| 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..7fea96051ce1b5d94690f4a55e384496449db39f 100644
|
| --- a/third_party/WebKit/Source/modules/webaudio/GainNode.h
|
| +++ b/third_party/WebKit/Source/modules/webaudio/GainNode.h
|
| @@ -59,13 +59,13 @@ private:
|
| class GainNode final : public AudioNode {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| - static GainNode* create(AbstractAudioContext&, float sampleRate);
|
| + static GainNode* create(AbstractAudioContext&, ExceptionState&);
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| AudioParam* gain() const;
|
|
|
| private:
|
| - GainNode(AbstractAudioContext&, float sampleRate);
|
| + GainNode(AbstractAudioContext&);
|
|
|
| Member<AudioParam> m_gain;
|
| };
|
|
|