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, 2 insertions, 3 deletions
diff --git a/webkit/appcache/appcache_frontend_impl.cc b/webkit/appcache/appcache_frontend_impl.cc
index 5f490f3..2365a912d 100644
--- a/webkit/appcache/appcache_frontend_impl.cc
+++ b/webkit/appcache/appcache_frontend_impl.cc
@@ -60,11 +60,10 @@ void AppCacheFrontendImpl::OnLogMessage(int host_id, LogLevel log_level,
host->OnLogMessage(log_level, message);
}
-void AppCacheFrontendImpl::OnContentBlocked(int host_id,
- const GURL& manifest_url) {
+void AppCacheFrontendImpl::OnContentBlocked(int host_id) {
WebApplicationCacheHostImpl* host = GetHost(host_id);
if (host)
- host->OnContentBlocked(manifest_url);
+ host->OnContentBlocked();
}
} // namespace appcache