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

Unified Diff: content/child/appcache/appcache_backend_proxy.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_backend_proxy.h ('k') | content/child/appcache/appcache_dispatcher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/appcache/appcache_backend_proxy.cc
diff --git a/content/child/appcache/appcache_backend_proxy.cc b/content/child/appcache/appcache_backend_proxy.cc
index 8f9d06a3912b172cd72e838b1ec9a800ae1695a7..21240f04c3db10a6d36352438c6b383daf1aef18 100644
--- a/content/child/appcache/appcache_backend_proxy.cc
+++ b/content/child/appcache/appcache_backend_proxy.cc
@@ -16,6 +16,24 @@ void AppCacheBackendProxy::UnregisterHost(int host_id) {
sender_->Send(new AppCacheHostMsg_UnregisterHost(host_id));
}
+void AppCacheBackendProxy::RegisterController(int host_id,
+ const GURL& document_url,
+ const string16& pattern,
+ const GURL& controller_url) {
+ sender_->Send(new AppCacheHostMsg_RegisterController(host_id,
+ document_url,
+ pattern,
+ controller_url));
+}
+
+void AppCacheBackendProxy::UnregisterController(int host_id,
+ const GURL& document_url,
+ const string16& pattern) {
+ sender_->Send(new AppCacheHostMsg_UnregisterController(host_id,
+ document_url,
+ pattern));
+}
+
void AppCacheBackendProxy::SetSpawningHostId(int host_id,
int spawning_host_id) {
sender_->Send(new AppCacheHostMsg_SetSpawningHostId(
« no previous file with comments | « content/child/appcache/appcache_backend_proxy.h ('k') | content/child/appcache/appcache_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698