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

Unified Diff: third_party/WebKit/Source/core/animation/InterpolationEffect.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/InterpolationEffect.cpp
diff --git a/third_party/WebKit/Source/core/animation/InterpolationEffect.cpp b/third_party/WebKit/Source/core/animation/InterpolationEffect.cpp
index 2f50610fb4c94cf3bcd562417c2427cb6cc800f4..55a5739560996e3a7344e2e96d69a24ff526a359 100644
--- a/third_party/WebKit/Source/core/animation/InterpolationEffect.cpp
+++ b/third_party/WebKit/Source/core/animation/InterpolationEffect.cpp
@@ -28,7 +28,7 @@ void InterpolationEffect::getActiveInterpolations(
if (resultIndex < existingSize)
result[resultIndex++] = interpolation;
else
- result.append(interpolation);
+ result.push_back(interpolation);
}
}
if (resultIndex < existingSize)

Powered by Google App Engine
This is Rietveld 408576698