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

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

Issue 2834053003: Split V8Binding (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 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/AudioWorklet.h" 5 #include "modules/webaudio/AudioWorklet.h"
6 6
7 #include "bindings/core/v8/V8Binding.h" 7 #include "bindings/core/v8/V8BindingForCore.h"
8 #include "core/dom/Document.h" 8 #include "core/dom/Document.h"
9 #include "core/frame/LocalFrame.h" 9 #include "core/frame/LocalFrame.h"
10 #include "modules/webaudio/AudioWorkletMessagingProxy.h" 10 #include "modules/webaudio/AudioWorkletMessagingProxy.h"
11 #include "modules/webaudio/AudioWorkletThread.h" 11 #include "modules/webaudio/AudioWorkletThread.h"
12 12
13 namespace blink { 13 namespace blink {
14 14
15 AudioWorklet* AudioWorklet::Create(LocalFrame* frame) { 15 AudioWorklet* AudioWorklet::Create(LocalFrame* frame) {
16 return new AudioWorklet(frame); 16 return new AudioWorklet(frame);
17 } 17 }
(...skipping 24 matching lines...) Expand all
42 WorkletGlobalScopeProxy* AudioWorklet::GetWorkletGlobalScopeProxy() const { 42 WorkletGlobalScopeProxy* AudioWorklet::GetWorkletGlobalScopeProxy() const {
43 DCHECK(worklet_messaging_proxy_); 43 DCHECK(worklet_messaging_proxy_);
44 return worklet_messaging_proxy_; 44 return worklet_messaging_proxy_;
45 } 45 }
46 46
47 DEFINE_TRACE(AudioWorklet) { 47 DEFINE_TRACE(AudioWorklet) {
48 ThreadedWorklet::Trace(visitor); 48 ThreadedWorklet::Trace(visitor);
49 } 49 }
50 50
51 } // namespace blink 51 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698