From 6898bbedb15bfddf91ea125e3ffde4b1789d9bf3 Mon Sep 17 00:00:00 2001 From: "atwilson@chromium.org" Date: Thu, 5 Nov 2009 16:27:06 +0000 Subject: Added beginnings of browser-process support for shared workers. Refactored WebWorkerClientProxy into two classes - WebWorkerDispatcher which dispatches incoming IPCs for the worker, and WebWorkerClientProxy, which handles outgoing API calls from WebWorkerImpl. This allows WebWorkerClientProxy to be reused by WebSharedWorkerDispatcher. BUG=26233 TEST=none (will enable layout tests when basic functionality available) Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=31077 Review URL: http://codereview.chromium.org/351004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31096 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/worker/worker_thread.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'chrome/worker/worker_thread.h') diff --git a/chrome/worker/worker_thread.h b/chrome/worker/worker_thread.h index 27d0abf..040f0db 100644 --- a/chrome/worker/worker_thread.h +++ b/chrome/worker/worker_thread.h @@ -21,7 +21,8 @@ class WorkerThread : public ChildThread { private: virtual void OnControlMessageReceived(const IPC::Message& msg); - void OnCreateWorker(const GURL& url, int route_id); + void OnCreateWorker( + const GURL& url, bool is_shared, const string16& name, int route_id); scoped_ptr webkit_client_; -- cgit v1.1