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

Unified Diff: third_party/WebKit/Source/modules/canvas2d/BaseRenderingContext2D.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/canvas2d/BaseRenderingContext2D.cpp
diff --git a/third_party/WebKit/Source/modules/canvas2d/BaseRenderingContext2D.cpp b/third_party/WebKit/Source/modules/canvas2d/BaseRenderingContext2D.cpp
index d4409a2a8425c0aaf981afb5c8de755f3ff8b20a..e5b2229fe45f882e9ec0fc1adcfc6ab2a66e09f9 100644
--- a/third_party/WebKit/Source/modules/canvas2d/BaseRenderingContext2D.cpp
+++ b/third_party/WebKit/Source/modules/canvas2d/BaseRenderingContext2D.cpp
@@ -1382,8 +1382,9 @@ CanvasGradient* BaseRenderingContext2D::createRadialGradient(
ExceptionState& exceptionState) {
if (r0 < 0 || r1 < 0) {
exceptionState.throwDOMException(
- IndexSizeError, String::format("The %s provided is less than 0.",
- r0 < 0 ? "r0" : "r1"));
+ IndexSizeError,
+ String::format("The %s provided is less than 0.",
+ r0 < 0 ? "r0" : "r1"));
return nullptr;
}

Powered by Google App Engine
This is Rietveld 408576698