| 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:
|
|
|