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

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

Issue 1017983003: Web Audio: Rename AudioParam class to AudioParamHandler. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 9 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 | « no previous file | Source/modules/webaudio/AudioNodeOutput.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webaudio/AudioNode.h
diff --git a/Source/modules/webaudio/AudioNode.h b/Source/modules/webaudio/AudioNode.h
index 44ac862f364501dcb286b6454955b467ec0c301b..feca3a5a120b451a04c41f57a2ce5c516a69715d 100644
--- a/Source/modules/webaudio/AudioNode.h
+++ b/Source/modules/webaudio/AudioNode.h
@@ -40,7 +40,7 @@ namespace blink {
class AudioContext;
class AudioNodeInput;
class AudioNodeOutput;
-class AudioParam;
+class AudioParamHandler;
class ExceptionState;
// An AudioNode is the basic building block for handling audio within an AudioContext.
@@ -137,15 +137,15 @@ public:
// Called from main thread by corresponding JavaScript methods.
virtual void connect(AudioNode*, unsigned outputIndex, unsigned inputIndex, ExceptionState&);
- void connect(AudioParam*, unsigned outputIndex, ExceptionState&);
+ void connect(AudioParamHandler*, unsigned outputIndex, ExceptionState&);
virtual void disconnect();
virtual void disconnect(unsigned outputIndex, ExceptionState&);
virtual void disconnect(AudioNode*, ExceptionState&);
virtual void disconnect(AudioNode*, unsigned outputIndex, ExceptionState&);
virtual void disconnect(AudioNode*, unsigned outputIndex, unsigned inputIndex, ExceptionState&);
- virtual void disconnect(AudioParam*, ExceptionState&);
- virtual void disconnect(AudioParam*, unsigned outputIndex, ExceptionState&);
+ virtual void disconnect(AudioParamHandler*, ExceptionState&);
+ virtual void disconnect(AudioParamHandler*, unsigned outputIndex, ExceptionState&);
// Like disconnect, but no exception is thrown if the outputIndex is invalid. Just do nothing
// in that case.
« no previous file with comments | « no previous file | Source/modules/webaudio/AudioNodeOutput.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698