| 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 280a5a5827782e408ebd643bfaa6cf48deef0cd8..ed648e988700bed9fec05bc8f0738a5de1f948c4 100644
|
| --- a/third_party/WebKit/Source/modules/webaudio/DefaultAudioDestinationNode.cpp
|
| +++ b/third_party/WebKit/Source/modules/webaudio/DefaultAudioDestinationNode.cpp
|
| @@ -37,8 +37,8 @@ DefaultAudioDestinationHandler::DefaultAudioDestinationHandler(AudioNode& node)
|
| {
|
| // Node-specific default mixing rules.
|
| m_channelCount = 2;
|
| - m_channelCountMode = Explicit;
|
| - m_channelInterpretation = AudioBus::Speakers;
|
| + setInternalChannelCountMode(Explicit);
|
| + setInternalChannelInterpretation(AudioBus::Speakers);
|
| }
|
|
|
| PassRefPtr<DefaultAudioDestinationHandler> DefaultAudioDestinationHandler::create(AudioNode& node)
|
|
|