| Index: Source/modules/webaudio/AnalyserNode.cpp
|
| diff --git a/Source/modules/webaudio/AnalyserNode.cpp b/Source/modules/webaudio/AnalyserNode.cpp
|
| index 62d7fe29868686b74520ba6a51546d921d81eab9..01dfcb9054fd995f88706660e7aa2942a3013229 100644
|
| --- a/Source/modules/webaudio/AnalyserNode.cpp
|
| +++ b/Source/modules/webaudio/AnalyserNode.cpp
|
| @@ -75,8 +75,8 @@ void AnalyserNode::setFftSize(unsigned size, ExceptionState& exceptionState)
|
| exceptionState.throwDOMException(
|
| IndexSizeError,
|
| (size < RealtimeAnalyser::MinFFTSize || size > RealtimeAnalyser::MaxFFTSize) ?
|
| - ExceptionMessages::indexOutsideRange("FTT size", size, RealtimeAnalyser::MinFFTSize, ExceptionMessages::InclusiveBound, RealtimeAnalyser::MaxFFTSize, ExceptionMessages::InclusiveBound)
|
| - : ("The value provided (" + String::number(size) + " is not a power of two."));
|
| + ExceptionMessages::indexOutsideRange("FFT size", size, RealtimeAnalyser::MinFFTSize, ExceptionMessages::InclusiveBound, RealtimeAnalyser::MaxFFTSize, ExceptionMessages::InclusiveBound)
|
| + : ("The value provided (" + String::number(size) + ") is not a power of two."));
|
| }
|
| }
|
|
|
|
|