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

Unified Diff: third_party/WebKit/Source/core/animation/CSSBorderImageLengthBoxInterpolationType.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/CSSBorderImageLengthBoxInterpolationType.cpp
diff --git a/third_party/WebKit/Source/core/animation/CSSBorderImageLengthBoxInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSBorderImageLengthBoxInterpolationType.cpp
index b23a1fa410a5a867492ac69df5159d84c4a6116d..354a7887ad13a5431952b9d0670e7bb2c4300faa 100644
--- a/third_party/WebKit/Source/core/animation/CSSBorderImageLengthBoxInterpolationType.cpp
+++ b/third_party/WebKit/Source/core/animation/CSSBorderImageLengthBoxInterpolationType.cpp
@@ -176,8 +176,9 @@ InterpolationValue convertBorderImageLengthBox(const BorderImageLengthBox& box,
}
return InterpolationValue(
- std::move(list), CSSBorderImageLengthBoxNonInterpolableValue::create(
- SideNumbers(box), std::move(nonInterpolableValues)));
+ std::move(list),
+ CSSBorderImageLengthBoxNonInterpolableValue::create(
+ SideNumbers(box), std::move(nonInterpolableValues)));
}
} // namespace
@@ -243,8 +244,9 @@ InterpolationValue CSSBorderImageLengthBoxInterpolationType::maybeConvertValue(
for (size_t i = 0; i < SideIndexCount; i++) {
const CSSValue& side = *sides[i];
if (side.isPrimitiveValue() && toCSSPrimitiveValue(side).isNumber()) {
- list->set(i, InterpolableNumber::create(
- toCSSPrimitiveValue(side).getDoubleValue()));
+ list->set(i,
+ InterpolableNumber::create(
+ toCSSPrimitiveValue(side).getDoubleValue()));
} else {
InterpolationValue convertedSide =
LengthInterpolationFunctions::maybeConvertCSSValue(side);

Powered by Google App Engine
This is Rietveld 408576698