| Index: third_party/WebKit/Source/modules/webaudio/GainNode.h
|
| diff --git a/third_party/WebKit/Source/modules/webaudio/GainNode.h b/third_party/WebKit/Source/modules/webaudio/GainNode.h
|
| index 7fea96051ce1b5d94690f4a55e384496449db39f..0f8cffbbd5ba297c65b83586f6ddadc5bef14d40 100644
|
| --- a/third_party/WebKit/Source/modules/webaudio/GainNode.h
|
| +++ b/third_party/WebKit/Source/modules/webaudio/GainNode.h
|
| @@ -32,7 +32,7 @@
|
|
|
| namespace blink {
|
|
|
| -class AbstractAudioContext;
|
| +class BaseAudioContext;
|
|
|
| // GainNode is an AudioNode with one input and one output which applies a gain (volume) change to the audio signal.
|
| // De-zippering (smoothing) is applied when the gain value is changed dynamically.
|
| @@ -59,13 +59,13 @@ private:
|
| class GainNode final : public AudioNode {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| - static GainNode* create(AbstractAudioContext&, ExceptionState&);
|
| + static GainNode* create(BaseAudioContext&, ExceptionState&);
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| AudioParam* gain() const;
|
|
|
| private:
|
| - GainNode(AbstractAudioContext&);
|
| + GainNode(BaseAudioContext&);
|
|
|
| Member<AudioParam> m_gain;
|
| };
|
|
|