| Index: third_party/WebKit/Source/modules/webaudio/OfflineAudioDestinationNode.cpp
|
| diff --git a/third_party/WebKit/Source/modules/webaudio/OfflineAudioDestinationNode.cpp b/third_party/WebKit/Source/modules/webaudio/OfflineAudioDestinationNode.cpp
|
| index 61f821a55b23867afda3738f04f13e7623b35a75..d94d577257294905572953741f342140f334cae1 100644
|
| --- a/third_party/WebKit/Source/modules/webaudio/OfflineAudioDestinationNode.cpp
|
| +++ b/third_party/WebKit/Source/modules/webaudio/OfflineAudioDestinationNode.cpp
|
| @@ -53,8 +53,8 @@ OfflineAudioDestinationHandler::OfflineAudioDestinationHandler(AudioNode& node,
|
|
|
| // Node-specific defaults.
|
| m_channelCount = m_renderTarget->numberOfChannels();
|
| - setInternalChannelCountMode(Explicit);
|
| - setInternalChannelInterpretation(AudioBus::Speakers);
|
| + m_channelCountMode = Explicit;
|
| + m_channelInterpretation = AudioBus::Speakers;
|
| }
|
|
|
| PassRefPtr<OfflineAudioDestinationHandler> OfflineAudioDestinationHandler::create(AudioNode& node, AudioBuffer* renderTarget)
|
|
|