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

Unified Diff: third_party/WebKit/Source/modules/webaudio/AudioWorklet.cpp

Issue 2312493002: [worklets] Introduce ThreadedWorkletMessagingProxy and AnimationWorkletMessagaingProxy. (Closed)
Patch Set: fix win compile. Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/modules/webaudio/AudioWorklet.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/webaudio/AudioWorklet.cpp
diff --git a/third_party/WebKit/Source/modules/webaudio/AudioWorklet.cpp b/third_party/WebKit/Source/modules/webaudio/AudioWorklet.cpp
index 093be8c9deb830004c4f71f33982ae2657be66f1..ac608e8015be0ced652856ecd35bb1d6f6498fb9 100644
--- a/third_party/WebKit/Source/modules/webaudio/AudioWorklet.cpp
+++ b/third_party/WebKit/Source/modules/webaudio/AudioWorklet.cpp
@@ -6,7 +6,6 @@
#include "bindings/core/v8/V8Binding.h"
#include "core/frame/LocalFrame.h"
-#include "core/workers/ThreadedWorkletGlobalScopeProxy.h"
hongchan 2016/09/09 17:45:30 I am not sure what this change means. Can you elab
ikilpatrick 2016/09/12 17:29:07 I've reverted these changes. Basically it needs a
namespace blink {
@@ -20,7 +19,6 @@ AudioWorklet* AudioWorklet::create(LocalFrame* frame)
AudioWorklet::AudioWorklet(LocalFrame* frame)
: Worklet(frame)
- , m_workletGlobalScopeProxy(new ThreadedWorkletGlobalScopeProxy())
{
}
@@ -30,7 +28,7 @@ AudioWorklet::~AudioWorklet()
WorkletGlobalScopeProxy* AudioWorklet::workletGlobalScopeProxy() const
{
- return m_workletGlobalScopeProxy.get();
+ return nullptr;
}
DEFINE_TRACE(AudioWorklet)
« no previous file with comments | « third_party/WebKit/Source/modules/webaudio/AudioWorklet.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698