| 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 da401a65dea6686d414015fca679d3a400673e00..730a4fd28ef740cc649514fed9a6dc21c8306f5e 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&, float sampleRate);
|
| + static GainNode* create(BaseAudioContext&, float sampleRate);
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| AudioParam* gain() const;
|
|
|
| private:
|
| - GainNode(AbstractAudioContext&, float sampleRate);
|
| + GainNode(BaseAudioContext&, float sampleRate);
|
|
|
| Member<AudioParam> m_gain;
|
| };
|
|
|