Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1083)

Unified Diff: content/child/appcache/appcache_dispatcher.cc

Issue 22314003: NavigationController prototype Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: NavController prototype - chrome side Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/child/appcache/appcache_dispatcher.h ('k') | content/child/appcache/appcache_frontend_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « content/child/appcache/appcache_dispatcher.h ('k') | content/child/appcache/appcache_frontend_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698