| Index: third_party/WebKit/Source/modules/webaudio/AnalyserNode.h
|
| diff --git a/third_party/WebKit/Source/modules/webaudio/AnalyserNode.h b/third_party/WebKit/Source/modules/webaudio/AnalyserNode.h
|
| index ef526825735f6966111a8681fe7628413c89ed02..8f1b2448284567ff577e928efb50e18f3e4500e9 100644
|
| --- a/third_party/WebKit/Source/modules/webaudio/AnalyserNode.h
|
| +++ b/third_party/WebKit/Source/modules/webaudio/AnalyserNode.h
|
| @@ -31,7 +31,7 @@
|
|
|
| namespace blink {
|
|
|
| -class AbstractAudioContext;
|
| +class BaseAudioContext;
|
| class ExceptionState;
|
|
|
| class AnalyserHandler final : public AudioBasicInspectorHandler {
|
| @@ -76,7 +76,7 @@ private:
|
| class AnalyserNode final : public AudioBasicInspectorNode {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| - static AnalyserNode* create(AbstractAudioContext&, float sampleRate);
|
| + static AnalyserNode* create(BaseAudioContext&, float sampleRate);
|
|
|
| unsigned fftSize() const;
|
| void setFftSize(unsigned size, ExceptionState&);
|
| @@ -93,7 +93,7 @@ public:
|
| void getByteTimeDomainData(DOMUint8Array*);
|
|
|
| private:
|
| - AnalyserNode(AbstractAudioContext&, float sampleRate);
|
| + AnalyserNode(BaseAudioContext&, float sampleRate);
|
| AnalyserHandler& analyserHandler() const;
|
| };
|
|
|
|
|