summaryrefslogtreecommitdiffstats
path: root/webkit/appcache/appcache_frontend_impl.cc
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/appcache/appcache_frontend_impl.cc')
-rw-r--r--webkit/appcache/appcache_frontend_impl.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/webkit/appcache/appcache_frontend_impl.cc b/webkit/appcache/appcache_frontend_impl.cc
index 2365a912d..5f490f3 100644
--- a/webkit/appcache/appcache_frontend_impl.cc
+++ b/webkit/appcache/appcache_frontend_impl.cc
@@ -60,10 +60,11 @@ void AppCacheFrontendImpl::OnLogMessage(int host_id, LogLevel log_level,
host->OnLogMessage(log_level, message);
}
-void AppCacheFrontendImpl::OnContentBlocked(int host_id) {
+void AppCacheFrontendImpl::OnContentBlocked(int host_id,
+ const GURL& manifest_url) {
WebApplicationCacheHostImpl* host = GetHost(host_id);
if (host)
- host->OnContentBlocked();
+ host->OnContentBlocked(manifest_url);
}
} // namespace appcache