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

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

Issue 2312273002: [worklets] Remove InProcessWorkerGlobalScopeProxy, and rename classes/methods. (Closed)
Patch Set: Created 4 years, 3 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/InProcessWorkerBase.h
diff --git a/third_party/WebKit/Source/core/workers/InProcessWorkerBase.h b/third_party/WebKit/Source/core/workers/InProcessWorkerBase.h
index abec7b8c204bf3922e26b0d5b4c8339ee32dcf83..631ef7eeb7a9e914f80504a1326d0afa6b7c08c6 100644
--- a/third_party/WebKit/Source/core/workers/InProcessWorkerBase.h
+++ b/third_party/WebKit/Source/core/workers/InProcessWorkerBase.h
@@ -22,7 +22,7 @@ namespace blink {
class ExceptionState;
class ExecutionContext;
-class InProcessWorkerGlobalScopeProxy;
+class InProcessWorkerMessagingProxy;
class WorkerScriptLoader;
// Base class for workers that operate in the same process as the document that
@@ -54,7 +54,7 @@ protected:
// Creates a proxy to allow communicating with the worker's global scope. InProcessWorkerBase does not take ownership of the
// created proxy. The proxy is expected to manage its own lifetime, and delete itself in response to terminateWorkerGlobalScope().
- virtual InProcessWorkerGlobalScopeProxy* createInProcessWorkerGlobalScopeProxy(ExecutionContext*) = 0;
+ virtual InProcessWorkerMessagingProxy* createInProcessWorkerMessagingProxy(ExecutionContext*) = 0;
private:
// Callbacks for m_scriptLoader.
@@ -64,7 +64,7 @@ private:
RefPtr<WorkerScriptLoader> m_scriptLoader;
Member<ContentSecurityPolicy> m_contentSecurityPolicy;
String m_referrerPolicy;
- InProcessWorkerGlobalScopeProxy* m_contextProxy; // The proxy outlives the worker to perform thread shutdown.
+ InProcessWorkerMessagingProxy* m_contextProxy; // The proxy outlives the worker to perform thread shutdown.
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698