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

Unified Diff: third_party/WebKit/Source/core/animation/ElementAnimation.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/ElementAnimation.h
diff --git a/third_party/WebKit/Source/core/animation/ElementAnimation.h b/third_party/WebKit/Source/core/animation/ElementAnimation.h
index ac4aeb611fab11b60d340bfec537a7130802cc7e..9f83d1847757a5aafa85f9263443009f2831746d 100644
--- a/third_party/WebKit/Source/core/animation/ElementAnimation.h
+++ b/third_party/WebKit/Source/core/animation/ElementAnimation.h
@@ -110,7 +110,7 @@ class ElementAnimation {
if (toKeyframeEffectReadOnly(animation->effect())->target() == element &&
(animation->effect()->isCurrent() ||
animation->effect()->isInEffect()))
- animations.append(animation);
+ animations.push_back(animation);
}
return animations;
}

Powered by Google App Engine
This is Rietveld 408576698