diff options
author | michaeln@chromium.org <michaeln@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-06 20:40:56 +0000 |
---|---|---|
committer | michaeln@chromium.org <michaeln@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-06 20:40:56 +0000 |
commit | 14396e9b2d58eda3d5734c57a80783e2dc0a705f (patch) | |
tree | 0ef906e2df709f9201d0f37544d4519a557852ee /chrome/renderer/webworker_proxy.h | |
parent | bbf362b447de9cdd023e933ae219731fc01d0571 (diff) | |
download | chromium_src-14396e9b2d58eda3d5734c57a80783e2dc0a705f.zip chromium_src-14396e9b2d58eda3d5734c57a80783e2dc0a705f.tar.gz chromium_src-14396e9b2d58eda3d5734c57a80783e2dc0a705f.tar.bz2 |
More groundwork for making appcache work in workers.
Widen the IPC message used to start and initialize a worker to
include the additional fields needed to initialize the appcache
host for that worker. And set those values when sending that message
from a renderer.
BUG=39368
TEST=manual and existing tests apply
Review URL: http://codereview.chromium.org/2013001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46610 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer/webworker_proxy.h')
-rw-r--r-- | chrome/renderer/webworker_proxy.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/renderer/webworker_proxy.h b/chrome/renderer/webworker_proxy.h index 112b561..c878f4f 100644 --- a/chrome/renderer/webworker_proxy.h +++ b/chrome/renderer/webworker_proxy.h @@ -26,7 +26,8 @@ class WebWorkerProxy : public WebKit::WebWorker, private WebWorkerBase { public: WebWorkerProxy(WebKit::WebWorkerClient* client, ChildThread* child_thread, - int render_view_route_id); + int render_view_route_id, + int parent_appcache_host_id); ~WebWorkerProxy(); // WebWorker implementation. |