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

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

Issue 1967393002: [DO NOT SUBMIT] AudioWorklet FS2: audio thread (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@FS1-audioworklet-script-importing
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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/webaudio/DefaultAudioDestinationNode.h
diff --git a/third_party/WebKit/Source/modules/webaudio/DefaultAudioDestinationNode.h b/third_party/WebKit/Source/modules/webaudio/DefaultAudioDestinationNode.h
index 9b6a8d29591d92ba1a25ea82b308fe4c16746d6b..3999c243a1302ae004dc99807fd536dc15eb5a2c 100644
--- a/third_party/WebKit/Source/modules/webaudio/DefaultAudioDestinationNode.h
+++ b/third_party/WebKit/Source/modules/webaudio/DefaultAudioDestinationNode.h
@@ -26,7 +26,8 @@
#define DefaultAudioDestinationNode_h
#include "modules/webaudio/AudioDestinationNode.h"
-#include "platform/audio/AudioDestination.h"
+// #include "platform/audio/AudioDestination.h"
+#include "platform/audio/AudioRenderSink.h"
#include "wtf/OwnPtr.h"
namespace blink {
@@ -52,9 +53,9 @@ public:
private:
explicit DefaultAudioDestinationHandler(AudioNode&);
- void createDestination();
+ void createRenderSink();
- OwnPtr<AudioDestination> m_destination;
+ OwnPtr<AudioRenderSink> m_audioRenderSink;
String m_inputDeviceId;
unsigned m_numberOfInputChannels;
};

Powered by Google App Engine
This is Rietveld 408576698