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

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

Issue 19724003: Revert "Transition modules/** to use ExceptionState" (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 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 | « Source/modules/webaudio/AnalyserNode.cpp ('k') | Source/modules/webaudio/AudioBasicInspectorNode.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webaudio/AudioBasicInspectorNode.h
diff --git a/Source/modules/webaudio/AudioBasicInspectorNode.h b/Source/modules/webaudio/AudioBasicInspectorNode.h
index 44d03cb103fa84967b9aed13d03b2fc3d2bdec3d..d50a7f26004d7879bcbf078ccd71b716127ca4da 100644
--- a/Source/modules/webaudio/AudioBasicInspectorNode.h
+++ b/Source/modules/webaudio/AudioBasicInspectorNode.h
@@ -29,8 +29,6 @@
namespace WebCore {
-class ExceptionState;
-
// AudioBasicInspectorNode is an AudioNode with one input and one output where the output might not necessarily connect to another node's input.
// If the output is not connected to any other node, then the AudioBasicInspectorNode's processIfNecessary() function will be called automatically by
// AudioContext before the end of each render quantum so that it can inspect the audio stream.
@@ -40,8 +38,8 @@ public:
// AudioNode
virtual void pullInputs(size_t framesToProcess);
- virtual void connect(AudioNode*, unsigned outputIndex, unsigned inputIndex, ExceptionState&);
- virtual void disconnect(unsigned outputIndex, ExceptionState&);
+ virtual void connect(AudioNode*, unsigned outputIndex, unsigned inputIndex, ExceptionCode&);
+ virtual void disconnect(unsigned outputIndex, ExceptionCode&);
virtual void checkNumberOfChannelsForInput(AudioNodeInput*);
private:
« no previous file with comments | « Source/modules/webaudio/AnalyserNode.cpp ('k') | Source/modules/webaudio/AudioBasicInspectorNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698