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

Unified Diff: third_party/WebKit/Source/core/workers/WorkerMessagingProxy.h

Issue 1888703002: Worker: Rename worker components to clarify what they work for (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: (Recreate the whole CL) just add Dedicated/InProcess prefixes Created 4 years, 8 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
Index: third_party/WebKit/Source/core/workers/WorkerMessagingProxy.h
diff --git a/third_party/WebKit/Source/core/workers/WorkerMessagingProxy.h b/third_party/WebKit/Source/core/workers/WorkerMessagingProxy.h
index 1810ccd81a6e6216775931397a672bdad5c50cc6..f89ba0a6c3c99ce701cd9781545e6757671fbdf8 100644
--- a/third_party/WebKit/Source/core/workers/WorkerMessagingProxy.h
+++ b/third_party/WebKit/Source/core/workers/WorkerMessagingProxy.h
@@ -29,7 +29,7 @@
#include "core/CoreExport.h"
#include "core/dom/ExecutionContext.h"
-#include "core/workers/WorkerGlobalScopeProxy.h"
+#include "core/workers/InProcessWorkerGlobalScopeProxy.h"
#include "core/workers/WorkerLoaderProxy.h"
#include "wtf/Forward.h"
#include "wtf/Noncopyable.h"
@@ -48,11 +48,11 @@ class WorkerClients;
class WorkerInspectorProxy;
class CORE_EXPORT WorkerMessagingProxy
- : public WorkerGlobalScopeProxy
+ : public InProcessWorkerGlobalScopeProxy
, private WorkerLoaderProxyProvider {
WTF_MAKE_NONCOPYABLE(WorkerMessagingProxy);
public:
- // Implementations of WorkerGlobalScopeProxy.
+ // Implementations of InProcessWorkerGlobalScopeProxy.
// (Only use these methods in the worker object thread.)
void startWorkerGlobalScope(const KURL& scriptURL, const String& userAgent, const String& sourceCode) override;
void terminateWorkerGlobalScope() override;

Powered by Google App Engine
This is Rietveld 408576698