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

Unified Diff: third_party/WebKit/Source/core/workers/Worker.cpp

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/Worker.cpp
diff --git a/third_party/WebKit/Source/core/workers/Worker.cpp b/third_party/WebKit/Source/core/workers/Worker.cpp
index 8a245c2377bbadd3086df2ca0809bcc86da3227d..ab0ddd0cc5da4ce7474a3c4e32c29381e3de7376 100644
--- a/third_party/WebKit/Source/core/workers/Worker.cpp
+++ b/third_party/WebKit/Source/core/workers/Worker.cpp
@@ -9,7 +9,7 @@
#include "core/dom/ExceptionCode.h"
#include "core/frame/UseCounter.h"
#include "core/workers/DedicatedWorkerGlobalScopeProxyProvider.h"
-#include "core/workers/InProcessWorkerGlobalScopeProxy.h"
+#include "core/workers/InProcessWorkerMessagingProxy.h"
namespace blink {
@@ -43,7 +43,7 @@ const AtomicString& Worker::interfaceName() const
return EventTargetNames::Worker;
}
-InProcessWorkerGlobalScopeProxy* Worker::createInProcessWorkerGlobalScopeProxy(ExecutionContext* context)
+InProcessWorkerMessagingProxy* Worker::createInProcessWorkerGlobalScopeProxy(ExecutionContext* context)
{
Document* document = toDocument(context);
DedicatedWorkerGlobalScopeProxyProvider* proxyProvider = DedicatedWorkerGlobalScopeProxyProvider::from(*document->page());

Powered by Google App Engine
This is Rietveld 408576698