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

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

Issue 2819153003: Worklet: Separate Worklet into MainThreadWorklet and ThreadedWorklet (Closed)
Patch Set: update comments 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 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 0d8ade7aef4fa3eb7bbfc9026809e2ef52bc03db..39e341d1ce049773c58b32fd7242e6daf1b73498 100644
--- a/third_party/WebKit/Source/modules/webaudio/AudioWorklet.cpp
+++ b/third_party/WebKit/Source/modules/webaudio/AudioWorklet.cpp
@@ -17,7 +17,7 @@ AudioWorklet* AudioWorklet::Create(LocalFrame* frame) {
}
AudioWorklet::AudioWorklet(LocalFrame* frame)
- : Worklet(frame), worklet_messaging_proxy_(nullptr) {}
+ : ThreadedWorklet(frame), worklet_messaging_proxy_(nullptr) {}
AudioWorklet::~AudioWorklet() {
if (worklet_messaging_proxy_)
@@ -45,7 +45,7 @@ WorkletGlobalScopeProxy* AudioWorklet::GetWorkletGlobalScopeProxy() const {
}
DEFINE_TRACE(AudioWorklet) {
- Worklet::Trace(visitor);
+ ThreadedWorklet::Trace(visitor);
}
} // namespace blink
« 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