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

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

Issue 2134813002: Implement ConstantSourceNode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase 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
Index: third_party/WebKit/Source/modules/webaudio/BaseAudioContext.h
diff --git a/third_party/WebKit/Source/modules/webaudio/BaseAudioContext.h b/third_party/WebKit/Source/modules/webaudio/BaseAudioContext.h
index aea84aa2697dd34f91c933bb361d052006f7fdb3..3511f26337a2abeb5877f028383bfd16cb421327 100644
--- a/third_party/WebKit/Source/modules/webaudio/BaseAudioContext.h
+++ b/third_party/WebKit/Source/modules/webaudio/BaseAudioContext.h
@@ -56,6 +56,7 @@ class AudioSummingJunction;
class BiquadFilterNode;
class ChannelMergerNode;
class ChannelSplitterNode;
+class ConstantSourceNode;
class ConvolverNode;
class DelayNode;
class Dictionary;
@@ -151,6 +152,7 @@ public:
// The AudioNode create methods are called on the main thread (from JavaScript).
AudioBufferSourceNode* createBufferSource(ExceptionState&);
+ ConstantSourceNode* createConstantSource(ExceptionState&);
MediaElementAudioSourceNode* createMediaElementSource(HTMLMediaElement*, ExceptionState&);
MediaStreamAudioSourceNode* createMediaStreamSource(MediaStream*, ExceptionState&);
MediaStreamAudioDestinationNode* createMediaStreamDestination(ExceptionState&);

Powered by Google App Engine
This is Rietveld 408576698