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

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

Issue 2793593002: AudioWorklet prototype
Patch Set: Rebase after ThreadedWorkletMessaginProxy change Created 3 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/webaudio/AudioWorklet.h
diff --git a/third_party/WebKit/Source/modules/webaudio/AudioWorklet.h b/third_party/WebKit/Source/modules/webaudio/AudioWorklet.h
index 71ddc90f9aa03f9da585028c4510714b531bb74c..215c1fd7fa94941c9ea65ca4ffce21b43e935cc2 100644
--- a/third_party/WebKit/Source/modules/webaudio/AudioWorklet.h
+++ b/third_party/WebKit/Source/modules/webaudio/AudioWorklet.h
@@ -12,7 +12,7 @@
namespace blink {
class LocalFrame;
-class ThreadedWorkletMessagingProxy;
+class AudioWorkletMessagingProxy;
class WorkletGlobalScopeProxy;
class MODULES_EXPORT AudioWorklet final : public ThreadedWorklet {
@@ -34,7 +34,9 @@ class MODULES_EXPORT AudioWorklet final : public ThreadedWorklet {
// The proxy outlives the worklet as it is used to perform thread shutdown,
// it deletes itself once this has occurred.
- ThreadedWorkletMessagingProxy* worklet_messaging_proxy_;
+ AudioWorkletMessagingProxy* worklet_messaging_proxy_;
+
+ bool is_initialized_ = false;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698