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

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

Issue 2310673002: [worklets] Split up InProcessWorkerMessagingProxy into a base+worker class. (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/DedicatedWorkerGlobalScopeProxyProvider.h
diff --git a/third_party/WebKit/Source/core/workers/DedicatedWorkerGlobalScopeProxyProvider.h b/third_party/WebKit/Source/core/workers/DedicatedWorkerGlobalScopeProxyProvider.h
index ad943bdcebf82337c9112e9f6c4bcf3bb493173a..8ca59874ee62bf1841a47bdeadf613827fa1af26 100644
--- a/third_party/WebKit/Source/core/workers/DedicatedWorkerGlobalScopeProxyProvider.h
+++ b/third_party/WebKit/Source/core/workers/DedicatedWorkerGlobalScopeProxyProvider.h
@@ -39,7 +39,7 @@
namespace blink {
-class InProcessWorkerGlobalScopeProxy;
+class InProcessWorkerMessagingProxy;
class Page;
class Worker;
@@ -49,7 +49,7 @@ public:
DedicatedWorkerGlobalScopeProxyProvider() { }
virtual ~DedicatedWorkerGlobalScopeProxyProvider() { }
- virtual InProcessWorkerGlobalScopeProxy* createWorkerGlobalScopeProxy(Worker*) = 0;
+ virtual InProcessWorkerMessagingProxy* createWorkerGlobalScopeProxy(Worker*) = 0;
static DedicatedWorkerGlobalScopeProxyProvider* from(Page&);
static const char* supplementName();

Powered by Google App Engine
This is Rietveld 408576698