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

Unified Diff: third_party/WebKit/Source/core/animation/animatable/AnimatableRepeatable.cpp

Issue 2562773002: Migrate WTF::Vector::append() to ::push_back() [part 2 of N] (Closed)
Patch Set: rebase Created 4 years 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/animatable/AnimatableRepeatable.cpp
diff --git a/third_party/WebKit/Source/core/animation/animatable/AnimatableRepeatable.cpp b/third_party/WebKit/Source/core/animation/animatable/AnimatableRepeatable.cpp
index 2235031dcbb72defec02f1180f4e80ddd85dd09c..2dc154dcff58f42752b4a1f7cdca41f6c41cb713 100644
--- a/third_party/WebKit/Source/core/animation/animatable/AnimatableRepeatable.cpp
+++ b/third_party/WebKit/Source/core/animation/animatable/AnimatableRepeatable.cpp
@@ -71,7 +71,7 @@ bool AnimatableRepeatable::interpolateLists(
// interpolable.
if (AnimatableValue::usesDefaultInterpolation(from, to))
return false;
- interpolatedValues.append(interpolate(from, to, fraction));
+ interpolatedValues.push_back(interpolate(from, to, fraction));
}
return true;
}

Powered by Google App Engine
This is Rietveld 408576698