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

Unified Diff: third_party/WebKit/Source/core/animation/animatable/AnimatableFilterOperations.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/animatable/AnimatableFilterOperations.cpp
diff --git a/third_party/WebKit/Source/core/animation/animatable/AnimatableFilterOperations.cpp b/third_party/WebKit/Source/core/animation/animatable/AnimatableFilterOperations.cpp
index f57ea549c53da03bddccda981464abbafedb43ba..7271df2ba6f6be2944674283f0c81db3b35d36cc 100644
--- a/third_party/WebKit/Source/core/animation/animatable/AnimatableFilterOperations.cpp
+++ b/third_party/WebKit/Source/core/animation/animatable/AnimatableFilterOperations.cpp
@@ -63,7 +63,7 @@ PassRefPtr<AnimatableValue> AnimatableFilterOperations::interpolateTo(
: 0;
FilterOperation* blendedOp = FilterOperation::blend(from, to, fraction);
if (blendedOp)
- result.operations().append(blendedOp);
+ result.operations().push_back(blendedOp);
else
NOTREACHED();
}

Powered by Google App Engine
This is Rietveld 408576698