OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "modules/webaudio/AudioWorklet.h" |
| 6 |
| 7 #include "bindings/core/v8/V8Binding.h" |
| 8 #include "core/dom/ExecutionContext.h" |
| 9 #include "modules/webaudio/AudioWorkletGlobalScope.h" |
| 10 |
| 11 namespace blink { |
| 12 |
| 13 // static |
| 14 AudioWorklet* AudioWorklet::create(LocalFrame* frame, ExecutionContext* executio
nContext) |
| 15 { |
| 16 AudioWorklet* worklet = new AudioWorklet(frame, executionContext); |
| 17 worklet->suspendIfNeeded(); |
| 18 return worklet; |
| 19 } |
| 20 |
| 21 AudioWorklet::AudioWorklet(LocalFrame* frame, ExecutionContext* executionContext
) |
| 22 : Worklet(executionContext) |
| 23 , m_audioWorkletGlobalScope(AudioWorkletGlobalScope::create(frame, execution
Context->url(), executionContext->userAgent(), executionContext->getSecurityOrig
in(), toIsolate(executionContext))) |
| 24 { |
| 25 } |
| 26 |
| 27 AudioWorklet::~AudioWorklet() |
| 28 { |
| 29 } |
| 30 |
| 31 WorkletGlobalScope* AudioWorklet::workletGlobalScope() const |
| 32 { |
| 33 return m_audioWorkletGlobalScope.get(); |
| 34 } |
| 35 |
| 36 AudioWorkletProcessorDefinition* AudioWorklet::findDefinition(const String& name
) |
| 37 { |
| 38 return m_audioWorkletGlobalScope->findDefinition(name); |
| 39 } |
| 40 |
| 41 DEFINE_TRACE(AudioWorklet) |
| 42 { |
| 43 visitor->trace(m_audioWorkletGlobalScope); |
| 44 Worklet::trace(visitor); |
| 45 } |
| 46 |
| 47 } // namespace blink |
OLD | NEW |