Index: content/worker/websharedworker_stub.h |
diff --git a/content/worker/websharedworker_stub.h b/content/worker/websharedworker_stub.h |
index 8dd312d5d995d421307fd6772e412a57515c69e9..498bc51905ffbdef5ca608ce7a34b6222d53edf2 100644 |
--- a/content/worker/websharedworker_stub.h |
+++ b/content/worker/websharedworker_stub.h |
@@ -8,6 +8,7 @@ |
#include "base/memory/scoped_ptr.h" |
#include "content/worker/websharedworkerclient_proxy.h" |
#include "content/worker/worker_webapplicationcachehost_impl.h" |
+#include "webkit/browser/appcache/appcache_executable_handler.h" |
#include "ipc/ipc_listener.h" |
#include "third_party/WebKit/public/web/WebSharedWorker.h" |
#include "url/gurl.h" |
@@ -56,7 +57,12 @@ class WebSharedWorkerStub : public IPC::Listener { |
const GURL& url, const string16& user_agent, const string16& source_code, |
const string16& content_security_policy, |
WebKit::WebContentSecurityPolicyType policy_type); |
- |
+ void OnStartEmbeddedWorkerContext( |
+ const GURL& url, const std::string& raw_source_code); |
+ void OnFetchEvent( |
+ int request_id, |
+ const appcache::AppCacheExecutableHandler::Request& request); |
+ void OnInstallEvent(int host_id); |
void OnTerminateWorkerContext(); |
int route_id_; |
@@ -76,6 +82,8 @@ class WebSharedWorkerStub : public IPC::Listener { |
typedef std::vector<PendingConnectInfo> PendingConnectInfoList; |
PendingConnectInfoList pending_connects_; |
+ bool is_embedded_worker_; |
+ |
DISALLOW_COPY_AND_ASSIGN(WebSharedWorkerStub); |
}; |