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

Unified Diff: third_party/WebKit/Source/core/animation/InterpolationEffect.h

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/InterpolationEffect.h
diff --git a/third_party/WebKit/Source/core/animation/InterpolationEffect.h b/third_party/WebKit/Source/core/animation/InterpolationEffect.h
index f8f0351f9629045930595e309dc60a8c29593c96..392fb4a958fadfb130c92c03e9ba9d163914b59d 100644
--- a/third_party/WebKit/Source/core/animation/InterpolationEffect.h
+++ b/third_party/WebKit/Source/core/animation/InterpolationEffect.h
@@ -40,9 +40,9 @@ class CORE_EXPORT InterpolationEffect {
double end,
double applyFrom,
double applyTo) {
- m_interpolations.append(InterpolationRecord(std::move(interpolation),
- std::move(easing), start, end,
- applyFrom, applyTo));
+ m_interpolations.push_back(InterpolationRecord(std::move(interpolation),
+ std::move(easing), start,
+ end, applyFrom, applyTo));
}
void addInterpolationsFromKeyframes(

Powered by Google App Engine
This is Rietveld 408576698