| Index: third_party/WebKit/Source/core/workers/ThreadedWorkletObjectProxy.h
|
| diff --git a/third_party/WebKit/Source/core/workers/ThreadedWorkletObjectProxy.h b/third_party/WebKit/Source/core/workers/ThreadedWorkletObjectProxy.h
|
| index 59e685133da5189ea2b95edf998956302653e69d..2c24b2dc4efdce6de9aa20bbf7f6e3e0fec3a195 100644
|
| --- a/third_party/WebKit/Source/core/workers/ThreadedWorkletObjectProxy.h
|
| +++ b/third_party/WebKit/Source/core/workers/ThreadedWorkletObjectProxy.h
|
| @@ -14,6 +14,7 @@ namespace blink {
|
|
|
| class ConsoleMessage;
|
| class ExecutionContext;
|
| +class ParentFrameTaskRunners;
|
| class ThreadedWorkletMessagingProxy;
|
|
|
| // A proxy to talk to the parent worklet object. This object is created on the
|
| @@ -39,7 +40,6 @@ class CORE_EXPORT ThreadedWorkletObjectProxy : public WorkerReportingProxy {
|
| const String& message,
|
| SourceLocation*) override;
|
| void postMessageToPageInspector(const String&) override;
|
| - ParentFrameTaskRunners* getParentFrameTaskRunners() override;
|
| void didEvaluateWorkerScript(bool success) override {}
|
| void didCloseWorkerGlobalScope() override;
|
| void willDestroyWorkerGlobalScope() override {}
|
| @@ -50,6 +50,7 @@ class CORE_EXPORT ThreadedWorkletObjectProxy : public WorkerReportingProxy {
|
|
|
| private:
|
| ExecutionContext* getExecutionContext() const;
|
| + ParentFrameTaskRunners* getParentFrameTaskRunners() const;
|
|
|
| // This object always outlives this proxy.
|
| ThreadedWorkletMessagingProxy* m_messagingProxy;
|
|
|