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

Unified Diff: third_party/WebKit/Source/core/animation/KeyframeEffectTest.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/KeyframeEffectTest.cpp
diff --git a/third_party/WebKit/Source/core/animation/KeyframeEffectTest.cpp b/third_party/WebKit/Source/core/animation/KeyframeEffectTest.cpp
index de6b4ca3e23cb58ab92197db541fb5e0ee07f0ee..ac694764cdfe073cb288827dd5751de4f0b30035 100644
--- a/third_party/WebKit/Source/core/animation/KeyframeEffectTest.cpp
+++ b/third_party/WebKit/Source/core/animation/KeyframeEffectTest.cpp
@@ -82,8 +82,8 @@ TEST_F(AnimationKeyframeEffectV8Test, CanCreateAnAnimation) {
setV8ObjectPropertyAsString(scope.isolate(), keyframe2, "easing",
"cubic-bezier(1, 1, 0.3, 0.3)");
- jsKeyframes.append(Dictionary(scope.isolate(), keyframe1, exceptionState));
- jsKeyframes.append(Dictionary(scope.isolate(), keyframe2, exceptionState));
+ jsKeyframes.push_back(Dictionary(scope.isolate(), keyframe1, exceptionState));
+ jsKeyframes.push_back(Dictionary(scope.isolate(), keyframe2, exceptionState));
String value1;
ASSERT_TRUE(DictionaryHelper::get(jsKeyframes[0], "width", value1));

Powered by Google App Engine
This is Rietveld 408576698