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

Unified Diff: third_party/WebKit/Source/core/workers/Worker.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/Worker.h
diff --git a/third_party/WebKit/Source/core/workers/Worker.h b/third_party/WebKit/Source/core/workers/Worker.h
index 2dbf303bd4c0b4b947cf868b7053bef2e51bba54..68d8e7da49b14072e3ebf319f938d401cea55a59 100644
--- a/third_party/WebKit/Source/core/workers/Worker.h
+++ b/third_party/WebKit/Source/core/workers/Worker.h
@@ -11,7 +11,6 @@ namespace blink {
class ExceptionState;
class ExecutionContext;
yhirano 2016/04/19 04:50:28 +class InProcessWorkerGlobalScopeProxy;
nhiroki 2016/04/19 06:15:05 Done.
-class WorkerGlobalScopeProxy;
class CORE_EXPORT Worker final : public InProcessWorkerBase {
DEFINE_WRAPPERTYPEINFO();
@@ -22,7 +21,7 @@ public:
protected:
explicit Worker(ExecutionContext*);
- WorkerGlobalScopeProxy* createWorkerGlobalScopeProxy(ExecutionContext*) override;
+ InProcessWorkerGlobalScopeProxy* createInProcessWorkerGlobalScopeProxy(ExecutionContext*) override;
const AtomicString& interfaceName() const override;
};

Powered by Google App Engine
This is Rietveld 408576698