| Index: third_party/WebKit/Source/modules/webaudio/OscillatorNode.h
|
| diff --git a/third_party/WebKit/Source/modules/webaudio/OscillatorNode.h b/third_party/WebKit/Source/modules/webaudio/OscillatorNode.h
|
| index f515946ee64c4d07b47a64ef6916365f16c6e0d1..9714472f2f157789c7d262741185f316cade4616 100644
|
| --- a/third_party/WebKit/Source/modules/webaudio/OscillatorNode.h
|
| +++ b/third_party/WebKit/Source/modules/webaudio/OscillatorNode.h
|
| @@ -34,7 +34,7 @@
|
|
|
| namespace blink {
|
|
|
| -class AbstractAudioContext;
|
| +class BaseAudioContext;
|
| class ExceptionState;
|
| class PeriodicWave;
|
|
|
| @@ -99,7 +99,7 @@ private:
|
| class OscillatorNode final : public AudioScheduledSourceNode {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| - static OscillatorNode* create(AbstractAudioContext&, ExceptionState&);
|
| + static OscillatorNode* create(BaseAudioContext&, ExceptionState&);
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| String type() const;
|
| @@ -109,7 +109,7 @@ public:
|
| void setPeriodicWave(PeriodicWave*);
|
|
|
| private:
|
| - OscillatorNode(AbstractAudioContext&);
|
| + OscillatorNode(BaseAudioContext&);
|
| OscillatorHandler& oscillatorHandler() const;
|
|
|
| Member<AudioParam> m_frequency;
|
|
|