| 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..d210c89bfc94ac7de614987a0a43dacbcf417c6b 100644
|
| --- a/third_party/WebKit/Source/modules/webaudio/ChannelSplitterNode.h
|
| +++ b/third_party/WebKit/Source/modules/webaudio/ChannelSplitterNode.h
|
| @@ -46,10 +46,11 @@ private:
|
| class ChannelSplitterNode final : public AudioNode {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| - static ChannelSplitterNode* create(AbstractAudioContext&, float sampleRate, unsigned numberOfOutputs);
|
| + static ChannelSplitterNode* create(AbstractAudioContext&, ExceptionState&);
|
| + static ChannelSplitterNode* create(AbstractAudioContext&, unsigned numberOfOutputs, ExceptionState&);
|
|
|
| private:
|
| - ChannelSplitterNode(AbstractAudioContext&, float sampleRate, unsigned numberOfOutputs);
|
| + ChannelSplitterNode(AbstractAudioContext&, unsigned numberOfOutputs);
|
| };
|
|
|
| } // namespace blink
|
|
|