diff options
author | dslomov@chromium.org <dslomov@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-27 00:43:56 +0000 |
---|---|---|
committer | dslomov@chromium.org <dslomov@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-27 00:43:56 +0000 |
commit | 2016c8bb4b78e2fc2e170b841cc28248044417ea (patch) | |
tree | 14f92e8c2b10645431ca1fafb5b3c4a54d2f8d95 /content/worker/worker_thread.h | |
parent | dd6045a3c5f5b99ad162f63cbe5e3af44a7756bf (diff) | |
download | chromium_src-2016c8bb4b78e2fc2e170b841cc28248044417ea.zip chromium_src-2016c8bb4b78e2fc2e170b841cc28248044417ea.tar.gz chromium_src-2016c8bb4b78e2fc2e170b841cc28248044417ea.tar.bz2 |
Removing dedicated worker-related IPC codei (first round).
Since dedicated workers moved in-process, IPC-related code for them is unused.
This is the first round of clean-up
Review URL: http://codereview.chromium.org/8399007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@107496 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/worker/worker_thread.h')
-rw-r--r-- | content/worker/worker_thread.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/content/worker/worker_thread.h b/content/worker/worker_thread.h index b5d5b33..a552c9a 100644 --- a/content/worker/worker_thread.h +++ b/content/worker/worker_thread.h @@ -14,7 +14,7 @@ class GURL; class AppCacheDispatcher; class DBMessageFilter; class WebDatabaseObserverImpl; -class WebWorkerStubBase; +class WebSharedWorkerStub; class WorkerWebKitPlatformSupportImpl; struct WorkerProcessMsg_CreateWorker_Params; @@ -27,8 +27,8 @@ class WorkerThread : public ChildThread { static WorkerThread* current(); // Invoked from stub constructors/destructors. Stubs own themselves. - void AddWorkerStub(WebWorkerStubBase* stub); - void RemoveWorkerStub(WebWorkerStubBase* stub); + void AddWorkerStub(WebSharedWorkerStub* stub); + void RemoveWorkerStub(WebSharedWorkerStub* stub); AppCacheDispatcher* appcache_dispatcher() { return appcache_dispatcher_.get(); @@ -45,7 +45,7 @@ class WorkerThread : public ChildThread { scoped_ptr<WebDatabaseObserverImpl> web_database_observer_impl_; scoped_refptr<DBMessageFilter> db_message_filter_; - typedef std::set<WebWorkerStubBase*> WorkerStubsList; + typedef std::set<WebSharedWorkerStub*> WorkerStubsList; WorkerStubsList worker_stubs_; DISALLOW_COPY_AND_ASSIGN(WorkerThread); |