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

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

Issue 2716853002: (WIP) Worker: Merge ParentFrameTaskRunners into TaskRunnerHelper
Patch Set: WIP Created 3 years, 10 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/InProcessWorkerObjectProxy.h
diff --git a/third_party/WebKit/Source/core/workers/InProcessWorkerObjectProxy.h b/third_party/WebKit/Source/core/workers/InProcessWorkerObjectProxy.h
index 2a6bc0e6dc80b775f9966c2d75033228f7a2cce0..6e7ef43a8e25eb86c6d61e43dc83375148d47dae 100644
--- a/third_party/WebKit/Source/core/workers/InProcessWorkerObjectProxy.h
+++ b/third_party/WebKit/Source/core/workers/InProcessWorkerObjectProxy.h
@@ -44,7 +44,6 @@
namespace blink {
class InProcessWorkerMessagingProxy;
-class ParentFrameTaskRunners;
class ThreadedMessagingProxyBase;
class WorkerGlobalScope;
class WorkerOrWorkletGlobalScope;
@@ -61,8 +60,7 @@ class CORE_EXPORT InProcessWorkerObjectProxy : public ThreadedObjectProxyBase {
public:
static std::unique_ptr<InProcessWorkerObjectProxy> create(
- const WeakPtr<InProcessWorkerMessagingProxy>&,
- ParentFrameTaskRunners*);
+ const WeakPtr<InProcessWorkerMessagingProxy>&);
~InProcessWorkerObjectProxy() override;
void postMessageToWorkerObject(PassRefPtr<SerializedScriptValue>,
@@ -81,8 +79,8 @@ class CORE_EXPORT InProcessWorkerObjectProxy : public ThreadedObjectProxyBase {
void willDestroyWorkerGlobalScope() override;
protected:
- InProcessWorkerObjectProxy(const WeakPtr<InProcessWorkerMessagingProxy>&,
- ParentFrameTaskRunners*);
+ explicit InProcessWorkerObjectProxy(
+ const WeakPtr<InProcessWorkerMessagingProxy>&);
WeakPtr<ThreadedMessagingProxyBase> messagingProxyWeakPtr() final;

Powered by Google App Engine
This is Rietveld 408576698