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

Unified Diff: third_party/WebKit/Source/platform/animation/CompositorFloatAnimationCurve.cpp

Issue 2615813003: Migrate WTF::Vector::append() to ::push_back() [part 14 of N] (Closed)
Patch Set: rebase, small fix in FontSettings.h Created 3 years, 11 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/platform/animation/CompositorFloatAnimationCurve.cpp
diff --git a/third_party/WebKit/Source/platform/animation/CompositorFloatAnimationCurve.cpp b/third_party/WebKit/Source/platform/animation/CompositorFloatAnimationCurve.cpp
index 572acffac48c5dd0af50c8da9c5e720b094bb9da..ef5abacd2574f3475ad038fe23cd179ca2c56748 100644
--- a/third_party/WebKit/Source/platform/animation/CompositorFloatAnimationCurve.cpp
+++ b/third_party/WebKit/Source/platform/animation/CompositorFloatAnimationCurve.cpp
@@ -31,7 +31,7 @@ CompositorFloatAnimationCurve::Keyframes
CompositorFloatAnimationCurve::keyframesForTesting() const {
Keyframes keyframes;
for (const auto& ccKeyframe : m_curve->keyframes_for_testing()) {
- keyframes.append(
+ keyframes.push_back(
WTF::wrapUnique(new CompositorFloatKeyframe(ccKeyframe->Clone())));
}
return keyframes;

Powered by Google App Engine
This is Rietveld 408576698