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 32c5a6faef0110b70fc6061c00a706f24343d8e8..82f4fe64136684b5339af21d65fcb5155fe901b2 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(); |
- m_channelCountMode = Explicit; |
- m_channelInterpretation = AudioBus::Speakers; |
+ setInternalChannelCountMode(Explicit); |
+ setInternalChannelInterpretation(AudioBus::Speakers); |
} |
PassRefPtr<OfflineAudioDestinationHandler> OfflineAudioDestinationHandler::create(AudioNode& node, AudioBuffer* renderTarget) |