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

Unified Diff: third_party/WebKit/Source/core/animation/EffectStack.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/EffectStack.h
diff --git a/third_party/WebKit/Source/core/animation/EffectStack.h b/third_party/WebKit/Source/core/animation/EffectStack.h
index a122a07f6561ec31534d1a61482aeebe570870b1..0b00f671f7ff6d08b31b0ef252944531d73e2660 100644
--- a/third_party/WebKit/Source/core/animation/EffectStack.h
+++ b/third_party/WebKit/Source/core/animation/EffectStack.h
@@ -57,7 +57,7 @@ class CORE_EXPORT EffectStack {
EffectStack();
void add(SampledEffect* sampledEffect) {
- m_sampledEffects.append(sampledEffect);
+ m_sampledEffects.push_back(sampledEffect);
}
bool isEmpty() const { return m_sampledEffects.isEmpty(); }
bool hasActiveAnimationsOnCompositor(CSSPropertyID) const;
« no previous file with comments | « third_party/WebKit/Source/core/animation/EffectInputTest.cpp ('k') | third_party/WebKit/Source/core/animation/EffectStack.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698