Index: Source/modules/webaudio/AnalyserNode.h |
diff --git a/Source/modules/webaudio/AnalyserNode.h b/Source/modules/webaudio/AnalyserNode.h |
index a4b534672bfaaa825a30e53e023fa3a2225b30da..3746f2be343614bc9607de0b0037035fe8438620 100644 |
--- a/Source/modules/webaudio/AnalyserNode.h |
+++ b/Source/modules/webaudio/AnalyserNode.h |
@@ -31,8 +31,6 @@ |
namespace WebCore { |
-class ExceptionState; |
- |
class AnalyserNode : public AudioBasicInspectorNode { |
public: |
static PassRefPtr<AnalyserNode> create(AudioContext* context, float sampleRate) |
@@ -48,7 +46,7 @@ public: |
// Javascript bindings |
unsigned fftSize() const { return m_analyser.fftSize(); } |
- void setFftSize(unsigned size, ExceptionState&); |
+ void setFftSize(unsigned size, ExceptionCode&); |
unsigned frequencyBinCount() const { return m_analyser.frequencyBinCount(); } |