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

Unified Diff: third_party/WebKit/Source/core/animation/CSSFilterListInterpolationType.cpp

Issue 2384263003: Reflow comments in core/animation and subdirs (Closed)
Patch Set: Created 4 years, 2 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/CSSFilterListInterpolationType.cpp
diff --git a/third_party/WebKit/Source/core/animation/CSSFilterListInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSFilterListInterpolationType.cpp
index b9383a3dc87ebc4f1787b91283447b98c2370c46..e14f5169a67eaaf9500abd5f615ab1b3fb86d8bf 100644
--- a/third_party/WebKit/Source/core/animation/CSSFilterListInterpolationType.cpp
+++ b/third_party/WebKit/Source/core/animation/CSSFilterListInterpolationType.cpp
@@ -191,7 +191,8 @@ PairwiseInterpolationValue CSSFilterListInterpolationType::maybeMergeSingles(
std::move(end.interpolableValue),
start.nonInterpolableValue.release());
- // Extend the shorter InterpolableList with neutral values that are compatible with corresponding filters in the longer list.
+ // Extend the shorter InterpolableList with neutral values that are compatible
+ // with corresponding filters in the longer list.
InterpolationValue& shorter = startLength < endLength ? start : end;
InterpolationValue& longer = startLength < endLength ? end : start;
size_t shorterLength =

Powered by Google App Engine
This is Rietveld 408576698