OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "modules/compositorworker/AnimationWorkletThread.h" | 5 #include "modules/compositorworker/AnimationWorkletThread.h" |
6 | 6 |
| 7 #include <memory> |
7 #include "bindings/core/v8/ScriptSourceCode.h" | 8 #include "bindings/core/v8/ScriptSourceCode.h" |
8 #include "bindings/core/v8/SourceLocation.h" | 9 #include "bindings/core/v8/SourceLocation.h" |
9 #include "bindings/core/v8/V8GCController.h" | 10 #include "bindings/core/v8/V8GCController.h" |
10 #include "bindings/core/v8/WorkerOrWorkletScriptController.h" | 11 #include "bindings/core/v8/WorkerOrWorkletScriptController.h" |
11 #include "core/inspector/ConsoleMessage.h" | 12 #include "core/inspector/ConsoleMessage.h" |
12 #include "core/workers/InProcessWorkerObjectProxy.h" | 13 #include "core/workers/InProcessWorkerObjectProxy.h" |
13 #include "core/workers/ParentFrameTaskRunners.h" | 14 #include "core/workers/ParentFrameTaskRunners.h" |
14 #include "core/workers/WorkerBackingThread.h" | 15 #include "core/workers/WorkerBackingThread.h" |
15 #include "core/workers/WorkerLoaderProxy.h" | 16 #include "core/workers/WorkerLoaderProxy.h" |
16 #include "core/workers/WorkerOrWorkletGlobalScope.h" | 17 #include "core/workers/WorkerOrWorkletGlobalScope.h" |
17 #include "core/workers/WorkerThreadStartupData.h" | 18 #include "core/workers/WorkerThreadStartupData.h" |
18 #include "platform/CrossThreadFunctional.h" | 19 #include "platform/CrossThreadFunctional.h" |
19 #include "platform/WaitableEvent.h" | 20 #include "platform/WaitableEvent.h" |
20 #include "platform/WebThreadSupportingGC.h" | 21 #include "platform/WebThreadSupportingGC.h" |
21 #include "platform/heap/Handle.h" | 22 #include "platform/heap/Handle.h" |
22 #include "platform/testing/TestingPlatformSupport.h" | 23 #include "platform/testing/TestingPlatformSupport.h" |
23 #include "platform/testing/UnitTestHelpers.h" | 24 #include "platform/testing/UnitTestHelpers.h" |
24 #include "public/platform/Platform.h" | 25 #include "public/platform/Platform.h" |
25 #include "public/platform/WebAddressSpace.h" | 26 #include "public/platform/WebAddressSpace.h" |
26 #include "testing/gtest/include/gtest/gtest.h" | 27 #include "testing/gtest/include/gtest/gtest.h" |
27 #include "wtf/PtrUtil.h" | 28 #include "wtf/PtrUtil.h" |
28 #include <memory> | |
29 | 29 |
30 namespace blink { | 30 namespace blink { |
31 namespace { | 31 namespace { |
32 | 32 |
33 // A null WorkerReportingProxy, supplied when creating AnimationWorkletThreads. | 33 // A null WorkerReportingProxy, supplied when creating AnimationWorkletThreads. |
34 class TestAnimationWorkletReportingProxy : public WorkerReportingProxy { | 34 class TestAnimationWorkletReportingProxy : public WorkerReportingProxy { |
35 public: | 35 public: |
36 static std::unique_ptr<TestAnimationWorkletReportingProxy> create() { | 36 static std::unique_ptr<TestAnimationWorkletReportingProxy> create() { |
37 return WTF::wrapUnique(new TestAnimationWorkletReportingProxy()); | 37 return WTF::wrapUnique(new TestAnimationWorkletReportingProxy()); |
38 } | 38 } |
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
216 ASSERT_TRUE(secondIsolate); | 216 ASSERT_TRUE(secondIsolate); |
217 EXPECT_EQ(firstIsolate, secondIsolate); | 217 EXPECT_EQ(firstIsolate, secondIsolate); |
218 | 218 |
219 // Verify that the isolate can run some scripts correctly in the second | 219 // Verify that the isolate can run some scripts correctly in the second |
220 // worklet. | 220 // worklet. |
221 checkWorkletCanExecuteScript(secondWorklet.get()); | 221 checkWorkletCanExecuteScript(secondWorklet.get()); |
222 secondWorklet->terminateAndWait(); | 222 secondWorklet->terminateAndWait(); |
223 } | 223 } |
224 | 224 |
225 } // namespace blink | 225 } // namespace blink |
OLD | NEW |