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

Unified Diff: Source/modules/webaudio/AudioDestinationNode.h

Issue 625363004: Implement suspend/resume for AudioContext (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix typo caught by bots but not locally Created 6 years, 2 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: Source/modules/webaudio/AudioDestinationNode.h
diff --git a/Source/modules/webaudio/AudioDestinationNode.h b/Source/modules/webaudio/AudioDestinationNode.h
index cb6e820fa46ce4f3485c10a73aa9e22380a60b92..fb5fd0bd813a387d1d09d9e8f70c141d5b7ea210 100644
--- a/Source/modules/webaudio/AudioDestinationNode.h
+++ b/Source/modules/webaudio/AudioDestinationNode.h
@@ -56,6 +56,7 @@ public:
virtual unsigned long maxChannelCount() const { return 0; }
virtual void startRendering() = 0;
+ virtual void stop() = 0;
haraken 2014/10/15 15:36:26 stop => stopRendering (for consistency with startR
Raymond Toy 2014/10/15 19:50:50 Done.
protected:
// LocalAudioInputProvider allows us to expose an AudioSourceProvider for local/live audio input.

Powered by Google App Engine
This is Rietveld 408576698