| Index: third_party/WebKit/Source/core/workers/ThreadedWorkletObjectProxy.cpp
|
| diff --git a/third_party/WebKit/Source/core/workers/ThreadedWorkletObjectProxy.cpp b/third_party/WebKit/Source/core/workers/ThreadedWorkletObjectProxy.cpp
|
| index f8fc183a13648a5b9d3bb91d3c9df58aea68b991..4ed80b9dc556d8da92ccab4f535b25929aa37be4 100644
|
| --- a/third_party/WebKit/Source/core/workers/ThreadedWorkletObjectProxy.cpp
|
| +++ b/third_party/WebKit/Source/core/workers/ThreadedWorkletObjectProxy.cpp
|
| @@ -50,12 +50,6 @@ void ThreadedWorkletObjectProxy::postMessageToPageInspector(
|
| crossThreadUnretained(m_messagingProxy), message));
|
| }
|
|
|
| -ParentFrameTaskRunners*
|
| -ThreadedWorkletObjectProxy::getParentFrameTaskRunners() {
|
| - DCHECK(m_messagingProxy);
|
| - return m_messagingProxy->getParentFrameTaskRunners();
|
| -}
|
| -
|
| void ThreadedWorkletObjectProxy::didCloseWorkerGlobalScope() {
|
| // TODO(nhiroki): Replace this with getParentFrameTaskRunners().
|
| // (https://crbug.com/667310)
|
| @@ -85,4 +79,10 @@ ExecutionContext* ThreadedWorkletObjectProxy::getExecutionContext() const {
|
| return m_messagingProxy->getExecutionContext();
|
| }
|
|
|
| +ParentFrameTaskRunners* ThreadedWorkletObjectProxy::getParentFrameTaskRunners()
|
| + const {
|
| + DCHECK(m_messagingProxy);
|
| + return m_messagingProxy->getParentFrameTaskRunners();
|
| +}
|
| +
|
| } // namespace blink
|
|
|