Index: content/child/appcache/appcache_dispatcher.cc |
diff --git a/content/child/appcache/appcache_dispatcher.cc b/content/child/appcache/appcache_dispatcher.cc |
index c3b4ec60898f2455e31534625aabba2c7f6bade3..9f97f0a01eaca4e40d043e8ce192fc9e100e9513 100644 |
--- a/content/child/appcache/appcache_dispatcher.cc |
+++ b/content/child/appcache/appcache_dispatcher.cc |
@@ -26,6 +26,7 @@ bool AppCacheDispatcher::OnMessageReceived(const IPC::Message& msg) { |
IPC_MESSAGE_HANDLER(AppCacheMsg_ErrorEventRaised, OnErrorEventRaised) |
IPC_MESSAGE_HANDLER(AppCacheMsg_LogMessage, OnLogMessage) |
IPC_MESSAGE_HANDLER(AppCacheMsg_ContentBlocked, OnContentBlocked) |
+ IPC_MESSAGE_HANDLER(AppCacheMsg_ControllerReady, OnControllerReady) |
IPC_MESSAGE_UNHANDLED(handled = false) |
IPC_END_MESSAGE_MAP() |
return handled; |
@@ -69,4 +70,8 @@ void AppCacheDispatcher::OnContentBlocked(int host_id, |
frontend_->OnContentBlocked(host_id, manifest_url); |
} |
+void AppCacheDispatcher::OnControllerReady(int host_id) { |
+ frontend_->OnControllerReady(host_id); |
+} |
+ |
} // namespace content |