| Index: third_party/WebKit/Source/modules/webaudio/StereoPannerNode.h
|
| diff --git a/third_party/WebKit/Source/modules/webaudio/StereoPannerNode.h b/third_party/WebKit/Source/modules/webaudio/StereoPannerNode.h
|
| index 4837c43fec34edb4c011b29565c98267c4d71f73..c450d47625b7cc27a104ab1749473f4c512e3349 100644
|
| --- a/third_party/WebKit/Source/modules/webaudio/StereoPannerNode.h
|
| +++ b/third_party/WebKit/Source/modules/webaudio/StereoPannerNode.h
|
| @@ -14,7 +14,7 @@
|
|
|
| namespace blink {
|
|
|
| -class AbstractAudioContext;
|
| +class BaseAudioContext;
|
|
|
| // StereoPannerNode is an AudioNode with one input and one output. It is
|
| // specifically designed for equal-power stereo panning.
|
| @@ -43,13 +43,13 @@ private:
|
| class StereoPannerNode final : public AudioNode {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| - static StereoPannerNode* create(AbstractAudioContext&, ExceptionState&);
|
| + static StereoPannerNode* create(BaseAudioContext&, ExceptionState&);
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| AudioParam* pan() const;
|
|
|
| private:
|
| - StereoPannerNode(AbstractAudioContext&);
|
| + StereoPannerNode(BaseAudioContext&);
|
|
|
| Member<AudioParam> m_pan;
|
| };
|
|
|