| Index: third_party/WebKit/Source/modules/webaudio/ChannelSplitterNode.h
|
| diff --git a/third_party/WebKit/Source/modules/webaudio/ChannelSplitterNode.h b/third_party/WebKit/Source/modules/webaudio/ChannelSplitterNode.h
|
| index d210c89bfc94ac7de614987a0a43dacbcf417c6b..1c094f7abe8ab40d929af87e6429936a44c5dcbb 100644
|
| --- a/third_party/WebKit/Source/modules/webaudio/ChannelSplitterNode.h
|
| +++ b/third_party/WebKit/Source/modules/webaudio/ChannelSplitterNode.h
|
| @@ -30,7 +30,7 @@
|
|
|
| namespace blink {
|
|
|
| -class AbstractAudioContext;
|
| +class BaseAudioContext;
|
|
|
| class ChannelSplitterHandler final : public AudioHandler {
|
| public:
|
| @@ -46,11 +46,11 @@ private:
|
| class ChannelSplitterNode final : public AudioNode {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| - static ChannelSplitterNode* create(AbstractAudioContext&, ExceptionState&);
|
| - static ChannelSplitterNode* create(AbstractAudioContext&, unsigned numberOfOutputs, ExceptionState&);
|
| + static ChannelSplitterNode* create(BaseAudioContext&, ExceptionState&);
|
| + static ChannelSplitterNode* create(BaseAudioContext&, unsigned numberOfOutputs, ExceptionState&);
|
|
|
| private:
|
| - ChannelSplitterNode(AbstractAudioContext&, unsigned numberOfOutputs);
|
| + ChannelSplitterNode(BaseAudioContext&, unsigned numberOfOutputs);
|
| };
|
|
|
| } // namespace blink
|
|
|