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( |