| Index: third_party/WebKit/Source/modules/webaudio/WaveShaperNode.h
|
| diff --git a/third_party/WebKit/Source/modules/webaudio/WaveShaperNode.h b/third_party/WebKit/Source/modules/webaudio/WaveShaperNode.h
|
| index bfaf39f9336db4361c89d9a2b9b32a06b56a5625..b089ca888f44a3b59b27d0540b800c2b71e9d577 100644
|
| --- a/third_party/WebKit/Source/modules/webaudio/WaveShaperNode.h
|
| +++ b/third_party/WebKit/Source/modules/webaudio/WaveShaperNode.h
|
| @@ -31,13 +31,13 @@
|
|
|
| namespace blink {
|
|
|
| -class AbstractAudioContext;
|
| +class BaseAudioContext;
|
| class ExceptionState;
|
|
|
| class WaveShaperNode final : public AudioNode {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| - static WaveShaperNode* create(AbstractAudioContext&, ExceptionState&);
|
| + static WaveShaperNode* create(BaseAudioContext&, ExceptionState&);
|
|
|
| // setCurve() is called on the main thread.
|
| void setCurve(DOMFloat32Array*, ExceptionState&);
|
| @@ -47,7 +47,7 @@ public:
|
| String oversample() const;
|
|
|
| private:
|
| - explicit WaveShaperNode(AbstractAudioContext&);
|
| + explicit WaveShaperNode(BaseAudioContext&);
|
|
|
| WaveShaperProcessor* getWaveShaperProcessor() const;
|
| };
|
|
|