| Index: third_party/WebKit/Source/modules/webaudio/ScriptProcessorNode.cpp
|
| diff --git a/third_party/WebKit/Source/modules/webaudio/ScriptProcessorNode.cpp b/third_party/WebKit/Source/modules/webaudio/ScriptProcessorNode.cpp
|
| index 19dc6b0ed0913cd2413807f3661c13597cc43128..51eb4229a0141fd900e1f8257e016c0bdc2f33c9 100644
|
| --- a/third_party/WebKit/Source/modules/webaudio/ScriptProcessorNode.cpp
|
| +++ b/third_party/WebKit/Source/modules/webaudio/ScriptProcessorNode.cpp
|
| @@ -310,10 +310,10 @@ void ScriptProcessorHandler::setChannelCount(unsigned long channelCount,
|
| BaseAudioContext::AutoLocker locker(context());
|
|
|
| if (channelCount != m_channelCount) {
|
| - exceptionState.throwDOMException(
|
| - NotSupportedError, "channelCount cannot be changed from " +
|
| - String::number(m_channelCount) + " to " +
|
| - String::number(channelCount));
|
| + exceptionState.throwDOMException(NotSupportedError,
|
| + "channelCount cannot be changed from " +
|
| + String::number(m_channelCount) +
|
| + " to " + String::number(channelCount));
|
| }
|
| }
|
|
|
|
|