OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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/ToV8.h" | 7 #include "bindings/core/v8/ToV8ForCore.h" |
8 #include "bindings/core/v8/V8Binding.h" | 8 #include "bindings/core/v8/V8Binding.h" |
9 #include "bindings/core/v8/V8BindingMacros.h" | 9 #include "bindings/core/v8/V8BindingMacros.h" |
10 #include "bindings/core/v8/V8ObjectConstructor.h" | 10 #include "bindings/core/v8/V8ObjectConstructor.h" |
11 #include "bindings/core/v8/WorkerOrWorkletScriptController.h" | 11 #include "bindings/core/v8/WorkerOrWorkletScriptController.h" |
12 #include "core/dom/ExceptionCode.h" | 12 #include "core/dom/ExceptionCode.h" |
13 #include "modules/webaudio/AudioBuffer.h" | 13 #include "modules/webaudio/AudioBuffer.h" |
14 #include "modules/webaudio/AudioWorkletProcessor.h" | 14 #include "modules/webaudio/AudioWorkletProcessor.h" |
15 #include "modules/webaudio/AudioWorkletProcessorDefinition.h" | 15 #include "modules/webaudio/AudioWorkletProcessorDefinition.h" |
16 #include "platform/weborigin/SecurityOrigin.h" | 16 #include "platform/weborigin/SecurityOrigin.h" |
17 | 17 |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
185 return processor_definition_map_.at(name); | 185 return processor_definition_map_.at(name); |
186 } | 186 } |
187 | 187 |
188 DEFINE_TRACE(AudioWorkletGlobalScope) { | 188 DEFINE_TRACE(AudioWorkletGlobalScope) { |
189 visitor->Trace(processor_definition_map_); | 189 visitor->Trace(processor_definition_map_); |
190 visitor->Trace(processor_instances_); | 190 visitor->Trace(processor_instances_); |
191 ThreadedWorkletGlobalScope::Trace(visitor); | 191 ThreadedWorkletGlobalScope::Trace(visitor); |
192 } | 192 } |
193 | 193 |
194 } // namespace blink | 194 } // namespace blink |
OLD | NEW |