| 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 5548ecaecee652c79298cf0bec7c429cace4ea12..abe4d9ad86a61cc222a4ab9363709c9e171aac44 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,10 +46,10 @@ private:
|
| class ChannelSplitterNode final : public AudioNode {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| - static ChannelSplitterNode* create(AbstractAudioContext&, float sampleRate, unsigned numberOfOutputs);
|
| + static ChannelSplitterNode* create(BaseAudioContext&, float sampleRate, unsigned numberOfOutputs);
|
|
|
| private:
|
| - ChannelSplitterNode(AbstractAudioContext&, float sampleRate, unsigned numberOfOutputs);
|
| + ChannelSplitterNode(BaseAudioContext&, float sampleRate, unsigned numberOfOutputs);
|
| };
|
|
|
| } // namespace blink
|
|
|