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

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

Issue 1960533003: [DO NOT SUBMIT] AudioWorklet FS1: importing scripts (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698