| Index: Source/modules/webaudio/StereoPannerNode.h
|
| diff --git a/Source/modules/webaudio/StereoPannerNode.h b/Source/modules/webaudio/StereoPannerNode.h
|
| index a6e7262fe2dffb8ff5f53ab11ab598261970916b..c9b9057699e83976d0f56cc8c625c644345e97da 100644
|
| --- a/Source/modules/webaudio/StereoPannerNode.h
|
| +++ b/Source/modules/webaudio/StereoPannerNode.h
|
| @@ -12,6 +12,8 @@
|
|
|
| namespace blink {
|
|
|
| +class AbstractAudioContext;
|
| +
|
| // StereoPannerNode is an AudioNode with one input and one output. It is
|
| // specifically designed for equal-power stereo panning.
|
| class StereoPannerHandler final : public AudioHandler {
|
| @@ -40,13 +42,13 @@ private:
|
| class StereoPannerNode final : public AudioNode {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| - static StereoPannerNode* create(AudioContext&, float sampleRate);
|
| + static StereoPannerNode* create(AbstractAudioContext&, float sampleRate);
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| AudioParam* pan() const;
|
|
|
| private:
|
| - StereoPannerNode(AudioContext&, float sampleRate);
|
| + StereoPannerNode(AbstractAudioContext&, float sampleRate);
|
|
|
| Member<AudioParam> m_pan;
|
| };
|
|
|