| Index: Source/modules/webaudio/DefaultAudioDestinationNode.cpp
|
| diff --git a/Source/modules/webaudio/DefaultAudioDestinationNode.cpp b/Source/modules/webaudio/DefaultAudioDestinationNode.cpp
|
| index 1d013d9d9c869e73c3a2d97ab994bffea91b1bce..cf138c844ab083792617f648a4acd20f217bb71d 100644
|
| --- a/Source/modules/webaudio/DefaultAudioDestinationNode.cpp
|
| +++ b/Source/modules/webaudio/DefaultAudioDestinationNode.cpp
|
| @@ -28,6 +28,7 @@
|
|
|
| #include "modules/webaudio/DefaultAudioDestinationNode.h"
|
|
|
| +#include "bindings/v8/ExceptionMessages.h"
|
| #include "bindings/v8/ExceptionState.h"
|
| #include "core/dom/ExceptionCode.h"
|
| #include "core/platform/Logging.h"
|
| @@ -119,7 +120,14 @@ void DefaultAudioDestinationNode::setChannelCount(unsigned long channelCount, Ex
|
| ASSERT(isMainThread());
|
|
|
| if (!maxChannelCount() || channelCount > maxChannelCount()) {
|
| - es.throwUninformativeAndGenericDOMException(InvalidStateError);
|
| + es.throwDOMException(
|
| + InvalidStateError,
|
| + ExceptionMessages::failedToSet(
|
| + "channelCount",
|
| + "AudioDestinationNode",
|
| + "channel count (" + String::number(channelCount)
|
| + + ") must be between 1 and "
|
| + + String::number(maxChannelCount()) + "."));
|
| return;
|
| }
|
|
|
|
|