Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2169)

Unified Diff: content/worker/worker_thread.h

Issue 8399007: Removing dedicated worker-related IPC codei (first round). (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: CR feedback Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/worker/webworkerclient_proxy.cc ('k') | content/worker/worker_thread.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/worker/worker_thread.h
diff --git a/content/worker/worker_thread.h b/content/worker/worker_thread.h
index b5d5b333ed810f33b4e12f8080c8ccf7ec5a34ea..a552c9aa1ab48d11d21717931d63d677ca54c313 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);
« no previous file with comments | « content/worker/webworkerclient_proxy.cc ('k') | content/worker/worker_thread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698