| Index: third_party/WebKit/Source/modules/webaudio/PannerNode.cpp
|
| diff --git a/third_party/WebKit/Source/modules/webaudio/PannerNode.cpp b/third_party/WebKit/Source/modules/webaudio/PannerNode.cpp
|
| index a4914d7e433a7e0e857564805bf933e172822483..9573181ed8947f104d0d0d1b974b475a1d47eaa6 100644
|
| --- a/third_party/WebKit/Source/modules/webaudio/PannerNode.cpp
|
| +++ b/third_party/WebKit/Source/modules/webaudio/PannerNode.cpp
|
| @@ -743,8 +743,9 @@ void PannerNode::setRefDistance(double distance,
|
| ExceptionState& exceptionState) {
|
| if (distance <= 0) {
|
| exceptionState.throwDOMException(
|
| - V8RangeError, ExceptionMessages::indexExceedsMinimumBound<double>(
|
| - "refDistance", distance, 0));
|
| + V8RangeError,
|
| + ExceptionMessages::indexExceedsMinimumBound<double>("refDistance",
|
| + distance, 0));
|
| return;
|
| }
|
|
|
| @@ -759,8 +760,9 @@ void PannerNode::setMaxDistance(double distance,
|
| ExceptionState& exceptionState) {
|
| if (distance <= 0) {
|
| exceptionState.throwDOMException(
|
| - V8RangeError, ExceptionMessages::indexExceedsMinimumBound<double>(
|
| - "maxDistance", distance, 0));
|
| + V8RangeError,
|
| + ExceptionMessages::indexExceedsMinimumBound<double>("maxDistance",
|
| + distance, 0));
|
| return;
|
| }
|
|
|
|
|