| Index: third_party/WebKit/Source/modules/webaudio/DefaultAudioDestinationNode.cpp
|
| diff --git a/third_party/WebKit/Source/modules/webaudio/DefaultAudioDestinationNode.cpp b/third_party/WebKit/Source/modules/webaudio/DefaultAudioDestinationNode.cpp
|
| index e1ec4ad8ff1e0698a9ae6870c7cbe345f56040cf..14147c7a68ed5097ff356a4b4948f3dcbf925583 100644
|
| --- a/third_party/WebKit/Source/modules/webaudio/DefaultAudioDestinationNode.cpp
|
| +++ b/third_party/WebKit/Source/modules/webaudio/DefaultAudioDestinationNode.cpp
|
| @@ -36,8 +36,8 @@ DefaultAudioDestinationHandler::DefaultAudioDestinationHandler(AudioNode& node)
|
| {
|
| // Node-specific default mixing rules.
|
| m_channelCount = 2;
|
| - setInternalChannelCountMode(Explicit);
|
| - setInternalChannelInterpretation(AudioBus::Speakers);
|
| + m_channelCountMode = Explicit;
|
| + m_channelInterpretation = AudioBus::Speakers;
|
| }
|
|
|
| PassRefPtr<DefaultAudioDestinationHandler> DefaultAudioDestinationHandler::create(AudioNode& node)
|
|
|