diff options
Diffstat (limited to 'chrome/common/appcache/appcache_dispatcher.cc')
-rw-r--r-- | chrome/common/appcache/appcache_dispatcher.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome/common/appcache/appcache_dispatcher.cc b/chrome/common/appcache/appcache_dispatcher.cc index 97e1cba..ff44f92 100644 --- a/chrome/common/appcache/appcache_dispatcher.cc +++ b/chrome/common/appcache/appcache_dispatcher.cc @@ -48,6 +48,7 @@ void AppCacheDispatcher::OnLogMessage( host_id, static_cast<appcache::LogLevel>(log_level), message); } -void AppCacheDispatcher::OnContentBlocked(int host_id) { - frontend_impl_.OnContentBlocked(host_id); +void AppCacheDispatcher::OnContentBlocked(int host_id, + const GURL& manifest_url) { + frontend_impl_.OnContentBlocked(host_id, manifest_url); } |