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

Unified Diff: third_party/WebKit/Source/core/animation/SVGNumberOptionalNumberInterpolationType.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/animation/SVGNumberOptionalNumberInterpolationType.cpp
diff --git a/third_party/WebKit/Source/core/animation/SVGNumberOptionalNumberInterpolationType.cpp b/third_party/WebKit/Source/core/animation/SVGNumberOptionalNumberInterpolationType.cpp
index d29332a92a0f5acdb7af0881e9b921501f62c979..447c7b8b592bc105142188ee54c9ad17b1745d4d 100644
--- a/third_party/WebKit/Source/core/animation/SVGNumberOptionalNumberInterpolationType.cpp
+++ b/third_party/WebKit/Source/core/animation/SVGNumberOptionalNumberInterpolationType.cpp
@@ -29,10 +29,12 @@ SVGNumberOptionalNumberInterpolationType::maybeConvertSVGValue(
const SVGNumberOptionalNumber& numberOptionalNumber =
toSVGNumberOptionalNumber(svgValue);
std::unique_ptr<InterpolableList> result = InterpolableList::create(2);
- result->set(0, InterpolableNumber::create(
- numberOptionalNumber.firstNumber()->value()));
- result->set(1, InterpolableNumber::create(
- numberOptionalNumber.secondNumber()->value()));
+ result->set(
+ 0,
+ InterpolableNumber::create(numberOptionalNumber.firstNumber()->value()));
+ result->set(
+ 1,
+ InterpolableNumber::create(numberOptionalNumber.secondNumber()->value()));
return InterpolationValue(std::move(result));
}

Powered by Google App Engine
This is Rietveld 408576698