| 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 fbb429e275ae17837500acffe257847e3bca1cf5..30ddfb815999389e14a3550e041aed9b2691f762 100644
|
| --- a/third_party/WebKit/Source/modules/compositorworker/AnimationWorkletThreadTest.cpp
|
| +++ b/third_party/WebKit/Source/modules/compositorworker/AnimationWorkletThreadTest.cpp
|
| @@ -4,13 +4,14 @@
|
|
|
| #include "modules/compositorworker/AnimationWorkletThread.h"
|
|
|
| +#include <memory>
|
| #include "bindings/core/v8/ScriptSourceCode.h"
|
| #include "bindings/core/v8/SourceLocation.h"
|
| #include "bindings/core/v8/V8GCController.h"
|
| #include "bindings/core/v8/WorkerOrWorkletScriptController.h"
|
| +#include "core/dom/TaskRunnerHelper.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"
|
| @@ -25,7 +26,6 @@
|
| #include "public/platform/WebAddressSpace.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| #include "wtf/PtrUtil.h"
|
| -#include <memory>
|
|
|
| namespace blink {
|
| namespace {
|
| @@ -97,7 +97,7 @@ class AnimationWorkletThreadTest : public ::testing::Test {
|
| nullptr, DontPauseWorkerGlobalScopeOnStart, nullptr, "",
|
| m_securityOrigin.get(), nullptr, WebAddressSpaceLocal, nullptr,
|
| nullptr, WorkerV8Settings::Default()),
|
| - ParentFrameTaskRunners::create(nullptr));
|
| + FrameTaskRunnersHolder::create(nullptr));
|
| return thread;
|
| }
|
|
|
|
|