| 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 dd373b185e4a7cde279f49746a5548e6738d1b86..5999f7aa35de5177e041b51be8ba2b8c12ca346b 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&, ExceptionState&);
|
| + static AnalyserNode* create(BaseAudioContext&, ExceptionState&);
|
|
|
| unsigned fftSize() const;
|
| void setFftSize(unsigned size, ExceptionState&);
|
| @@ -93,7 +93,7 @@ public:
|
| void getByteTimeDomainData(DOMUint8Array*);
|
|
|
| private:
|
| - AnalyserNode(AbstractAudioContext&);
|
| + AnalyserNode(BaseAudioContext&);
|
| AnalyserHandler& analyserHandler() const;
|
| };
|
|
|
|
|