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

Unified Diff: third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2DAPITest.cpp

Issue 2614663008: Migrate WTF::Vector::append() to ::push_back() [part 13 of N] (Closed)
Patch Set: Created 3 years, 11 months 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/modules/canvas2d/CanvasRenderingContext2DAPITest.cpp
diff --git a/third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2DAPITest.cpp b/third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2DAPITest.cpp
index ac5fb5b45328a684cde6261c526e7929c29d638c..a5c3db5aa35007e481f1ae9f80df30601407d392 100644
--- a/third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2DAPITest.cpp
+++ b/third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2DAPITest.cpp
@@ -215,8 +215,8 @@ TEST_F(CanvasRenderingContext2DAPITest, LineDashStateSave) {
createContext(NonOpaque);
Vector<double> simpleDash;
- simpleDash.append(4);
- simpleDash.append(2);
+ simpleDash.push_back(4);
+ simpleDash.push_back(2);
context2d()->setLineDash(simpleDash);
EXPECT_EQ(simpleDash, context2d()->getLineDash());

Powered by Google App Engine
This is Rietveld 408576698