Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(390)

Side by Side Diff: third_party/WebKit/Source/modules/webaudio/AudioWorkletGlobalScopeTest.cpp

Issue 2809243002: Split ToV8.h (Closed)
Patch Set: Rebase Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 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/webaudio/AudioWorkletGlobalScope.h" 5 #include "modules/webaudio/AudioWorkletGlobalScope.h"
6 6
7 #include "bindings/core/v8/ScriptSourceCode.h" 7 #include "bindings/core/v8/ScriptSourceCode.h"
8 #include "bindings/core/v8/ScriptState.h" 8 #include "bindings/core/v8/ScriptState.h"
9 #include "bindings/core/v8/ScriptValue.h" 9 #include "bindings/core/v8/ScriptValue.h"
10 #include "bindings/core/v8/SourceLocation.h" 10 #include "bindings/core/v8/SourceLocation.h"
11 #include "bindings/core/v8/ToV8.h" 11 #include "bindings/core/v8/ToV8ForCore.h"
12 #include "bindings/core/v8/V8Binding.h" 12 #include "bindings/core/v8/V8Binding.h"
13 #include "bindings/core/v8/V8BindingForTesting.h" 13 #include "bindings/core/v8/V8BindingForTesting.h"
14 #include "bindings/core/v8/V8BindingMacros.h" 14 #include "bindings/core/v8/V8BindingMacros.h"
15 #include "bindings/core/v8/V8GCController.h" 15 #include "bindings/core/v8/V8GCController.h"
16 #include "bindings/core/v8/V8ObjectConstructor.h" 16 #include "bindings/core/v8/V8ObjectConstructor.h"
17 #include "bindings/core/v8/WorkerOrWorkletScriptController.h" 17 #include "bindings/core/v8/WorkerOrWorkletScriptController.h"
18 #include "core/workers/WorkerBackingThread.h" 18 #include "core/workers/WorkerBackingThread.h"
19 #include "core/workers/WorkerReportingProxy.h" 19 #include "core/workers/WorkerReportingProxy.h"
20 #include "core/workers/WorkerThreadStartupData.h" 20 #include "core/workers/WorkerThreadStartupData.h"
21 #include "modules/webaudio/AudioBuffer.h" 21 #include "modules/webaudio/AudioBuffer.h"
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 thread->TerminateAndWait(); 257 thread->TerminateAndWait();
258 } 258 }
259 259
260 TEST_F(AudioWorkletGlobalScopeTest, BufferProcessing) { 260 TEST_F(AudioWorkletGlobalScopeTest, BufferProcessing) {
261 std::unique_ptr<AudioWorkletThread> thread = CreateAudioWorkletThread(); 261 std::unique_ptr<AudioWorkletThread> thread = CreateAudioWorkletThread();
262 RunSimpleProcessTest(thread.get()); 262 RunSimpleProcessTest(thread.get());
263 thread->TerminateAndWait(); 263 thread->TerminateAndWait();
264 } 264 }
265 265
266 } // namespace blink 266 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698