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

Side by Side Diff: third_party/WebKit/Source/modules/webaudio/WindowAudioWorklet.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/WindowAudioWorklet.h"
6
7 #include "core/frame/LocalDOMWindow.h"
8 #include "core/frame/LocalFrame.h"
9 #include "modules/webaudio/AudioWorklet.h"
10
11 namespace blink {
12
13 WindowAudioWorklet::WindowAudioWorklet(LocalDOMWindow& window)
14 : DOMWindowProperty(window.frame())
15 {
16 }
17
18 const char* WindowAudioWorklet::supplementName()
19 {
20 return "WindowAudioWorklet";
21 }
22
23 // static
24 WindowAudioWorklet& WindowAudioWorklet::from(LocalDOMWindow& window)
25 {
26 WindowAudioWorklet* supplement = static_cast<WindowAudioWorklet*>(Supplement <LocalDOMWindow>::from(window, supplementName()));
27 if (!supplement) {
28 supplement = new WindowAudioWorklet(window);
29 provideTo(window, supplementName(), supplement);
30 }
31 return *supplement;
32 }
33
34 // static
35 // TODO: why this returns Worklet*? This seems to be the connection to the
36 // window name space.
37 Worklet* WindowAudioWorklet::audioWorklet(ExecutionContext* executionContext, DO MWindow& window)
38 {
39 return from(toLocalDOMWindow(window)).audioWorklet(executionContext);
40 }
41
42 AudioWorklet* WindowAudioWorklet::audioWorklet(ExecutionContext* executionContex t) const
43 {
44 if (!m_audioWorklet && frame())
45 m_audioWorklet = AudioWorklet::create(frame(), executionContext);
46 return m_audioWorklet.get();
47 }
48
49 DEFINE_TRACE(WindowAudioWorklet)
50 {
51 visitor->trace(m_audioWorklet);
52 Supplement<LocalDOMWindow>::trace(visitor);
53 DOMWindowProperty::trace(visitor);
54 }
55
56 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698