Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(527)

Unified Diff: third_party/WebKit/Source/modules/webaudio/PannerNode.cpp

Issue 2701993002: DO NOT COMMIT: Results of running new (proposed) clang-format on Blink (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
}

Powered by Google App Engine
This is Rietveld 408576698