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

Unified Diff: third_party/WebKit/Source/core/svg/SVGAngleTearOff.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/core/svg/SVGAngleTearOff.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGAngleTearOff.cpp b/third_party/WebKit/Source/core/svg/SVGAngleTearOff.cpp
index 65678396cd5e66eab158d544c61f10b22a6ec32f..f069b8166d9c4c9328c978caf1181d3e4cb1a736 100644
--- a/third_party/WebKit/Source/core/svg/SVGAngleTearOff.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGAngleTearOff.cpp
@@ -76,8 +76,9 @@ void SVGAngleTearOff::newValueSpecifiedUnits(unsigned short unitType,
if (unitType == SVGAngle::kSvgAngletypeUnknown ||
unitType > SVGAngle::kSvgAngletypeGrad) {
exceptionState.throwDOMException(
- NotSupportedError, "Cannot set value with unknown or invalid units (" +
- String::number(unitType) + ").");
+ NotSupportedError,
+ "Cannot set value with unknown or invalid units (" +
+ String::number(unitType) + ").");
return;
}
target()->newValueSpecifiedUnits(
@@ -94,8 +95,9 @@ void SVGAngleTearOff::convertToSpecifiedUnits(unsigned short unitType,
if (unitType == SVGAngle::kSvgAngletypeUnknown ||
unitType > SVGAngle::kSvgAngletypeGrad) {
exceptionState.throwDOMException(
- NotSupportedError, "Cannot convert to unknown or invalid units (" +
- String::number(unitType) + ").");
+ NotSupportedError,
+ "Cannot convert to unknown or invalid units (" +
+ String::number(unitType) + ").");
return;
}
if (target()->unitType() == SVGAngle::kSvgAngletypeUnknown) {

Powered by Google App Engine
This is Rietveld 408576698