Index: content/browser/appcache/appcache_dispatcher_host.h |
diff --git a/content/browser/appcache/appcache_dispatcher_host.h b/content/browser/appcache/appcache_dispatcher_host.h |
index 29ed69ecf8b8da916ccb0c336c64d61fe12ab855..90ce8486dad1d54171e9f698ebfb74cb0c3950b0 100644 |
--- a/content/browser/appcache/appcache_dispatcher_host.h |
+++ b/content/browser/appcache/appcache_dispatcher_host.h |
@@ -13,6 +13,7 @@ |
#include "content/browser/appcache/appcache_frontend_proxy.h" |
#include "content/public/browser/browser_message_filter.h" |
#include "webkit/browser/appcache/appcache_backend_impl.h" |
+#include "webkit/browser/appcache/appcache_executable_handler.h" |
namespace content { |
class ChromeAppCacheService; |
@@ -60,6 +61,20 @@ class AppCacheDispatcherHost : public BrowserMessageFilter { |
void StartUpdateCallback(bool result, void* param); |
void SwapCacheCallback(bool result, void* param); |
+ void OnExeHandlerResponse( |
+ int request_id, |
+ const appcache::AppCacheExecutableHandler::Response& response); |
+ void OnFinishInstall(int host_id); |
+ |
+ void OnRegisterController( |
+ int host_id, |
+ const GURL& document_url, |
+ const string16& pattern, |
+ const GURL& controller_url); |
+ void OnUnregisterController( |
+ int host_id, |
+ const GURL& document_url, |
+ const string16& pattern); |
scoped_refptr<ChromeAppCacheService> appcache_service_; |
AppCacheFrontendProxy frontend_proxy_; |