Index: content/child/appcache/appcache_frontend_impl.cc |
diff --git a/content/child/appcache/appcache_frontend_impl.cc b/content/child/appcache/appcache_frontend_impl.cc |
index 0163df2d1cd2eee32fec34d163ce9c47a983baed..d4fa4ec2a3225f96c3709f55f7d235817cab1810 100644 |
--- a/content/child/appcache/appcache_frontend_impl.cc |
+++ b/content/child/appcache/appcache_frontend_impl.cc |
@@ -86,6 +86,12 @@ void AppCacheFrontendImpl::OnContentBlocked(int host_id, |
host->OnContentBlocked(manifest_url); |
} |
+void AppCacheFrontendImpl::OnControllerReady(int host_id) { |
+ WebApplicationCacheHostImpl* host = GetHost(host_id); |
+ if (host) |
+ host->OnControllerReady(); |
+} |
+ |
// Ensure that enum values never get out of sync with the |
// ones declared for use within the WebKit api |
COMPILE_ASSERT((int)WebApplicationCacheHost::Uncached == |