diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-07 20:57:13 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-07 20:57:13 +0000 |
commit | c6e672e847e080826800d92583f1d57405977819 (patch) | |
tree | f7021abdf377d187151bd0b5d31bad664b8b3b56 /chrome/browser/worker_host/worker_process_host.h | |
parent | 5fe2718a5268ab261a54d41d1cffa51bdc052932 (diff) | |
download | chromium_src-c6e672e847e080826800d92583f1d57405977819.zip chromium_src-c6e672e847e080826800d92583f1d57405977819.tar.gz chromium_src-c6e672e847e080826800d92583f1d57405977819.tar.bz2 |
Use one worker process per domain until we hit the maximum count of 10, then reuse processes.
Also add a test mode --webworker-process-per-core to create a worker process per worker until we hit the number of cores, then reuse.
Review URL: http://codereview.chromium.org/61001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@13279 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/worker_host/worker_process_host.h')
-rw-r--r-- | chrome/browser/worker_host/worker_process_host.h | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/chrome/browser/worker_host/worker_process_host.h b/chrome/browser/worker_host/worker_process_host.h index cf8072c..5432396 100644 --- a/chrome/browser/worker_host/worker_process_host.h +++ b/chrome/browser/worker_host/worker_process_host.h @@ -35,6 +35,22 @@ class WorkerProcessHost : public ChildProcessHost { void RendererShutdown(ResourceMessageFilter* filter); + protected: + friend class WorkerService; + + // Contains information about each worker instance, needed to forward messages + // between the renderer and worker processes. + struct WorkerInstance { + GURL url; + int render_view_route_id; + int worker_route_id; + int renderer_route_id; + ResourceMessageFilter* filter; + }; + + typedef std::list<WorkerInstance> Instances; + const Instances& instances() const { return instances_; } + private: // ResourceDispatcherHost::Receiver implementation: virtual URLRequestContext* GetRequestContext( @@ -49,17 +65,6 @@ class WorkerProcessHost : public ChildProcessHost { // Updates the title shown in the task manager. void UpdateTitle(); - // Contains information about each worker instance, needed to forward messages - // between the renderer and worker processes. - struct WorkerInstance { - GURL url; - int render_view_route_id; - int worker_route_id; - int renderer_route_id; - ResourceMessageFilter* filter; - }; - - typedef std::list<WorkerInstance> Instances; Instances instances_; DISALLOW_COPY_AND_ASSIGN(WorkerProcessHost); |