| Index: third_party/WebKit/Source/modules/compositorworker/AnimationWorkletThreadTest.cpp
|
| diff --git a/third_party/WebKit/Source/modules/compositorworker/AnimationWorkletThreadTest.cpp b/third_party/WebKit/Source/modules/compositorworker/AnimationWorkletThreadTest.cpp
|
| index 4c7fe4e707d07dd99722671e1146dbae673a2bb2..2dcc47457bddc42f6ea1a487d9af3129af9653f1 100644
|
| --- a/third_party/WebKit/Source/modules/compositorworker/AnimationWorkletThreadTest.cpp
|
| +++ b/third_party/WebKit/Source/modules/compositorworker/AnimationWorkletThreadTest.cpp
|
| @@ -10,7 +10,6 @@
|
| #include "bindings/core/v8/WorkerOrWorkletScriptController.h"
|
| #include "core/inspector/ConsoleMessage.h"
|
| #include "core/workers/InProcessWorkerObjectProxy.h"
|
| -#include "core/workers/ParentFrameTaskRunners.h"
|
| #include "core/workers/WorkerBackingThread.h"
|
| #include "core/workers/WorkerLoaderProxy.h"
|
| #include "core/workers/WorkerOrWorkletGlobalScope.h"
|
| @@ -46,20 +45,13 @@ class TestAnimationWorkletReportingProxy : public WorkerReportingProxy {
|
| const String& message,
|
| SourceLocation*) override {}
|
| void postMessageToPageInspector(const String&) override {}
|
| - ParentFrameTaskRunners* getParentFrameTaskRunners() override {
|
| - return m_parentFrameTaskRunners.get();
|
| - }
|
| -
|
| void didEvaluateWorkerScript(bool success) override {}
|
| void didCloseWorkerGlobalScope() override {}
|
| void willDestroyWorkerGlobalScope() override {}
|
| void didTerminateWorkerThread() override {}
|
|
|
| private:
|
| - TestAnimationWorkletReportingProxy()
|
| - : m_parentFrameTaskRunners(ParentFrameTaskRunners::create(nullptr)) {}
|
| -
|
| - Persistent<ParentFrameTaskRunners> m_parentFrameTaskRunners;
|
| + TestAnimationWorkletReportingProxy() {}
|
| };
|
|
|
| class AnimationWorkletTestPlatform : public TestingPlatformSupport {
|
|
|