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

Unified Diff: third_party/WebKit/Source/platform/graphics/GraphicsContextTest.cpp

Issue 2615813003: Migrate WTF::Vector::append() to ::push_back() [part 14 of N] (Closed)
Patch Set: rebase, small fix in FontSettings.h 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/platform/graphics/GraphicsContextTest.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/GraphicsContextTest.cpp b/third_party/WebKit/Source/platform/graphics/GraphicsContextTest.cpp
index b00e51a496d774936c6def9b72124b0caa352ddb..2d0a18c17737fe7eb0d90b2673e4079e0998ae2c 100644
--- a/third_party/WebKit/Source/platform/graphics/GraphicsContextTest.cpp
+++ b/third_party/WebKit/Source/platform/graphics/GraphicsContextTest.cpp
@@ -118,8 +118,8 @@ TEST(GraphicsContextTest, UnboundedDrawsAreClipped) {
// Make skia unable to compute fast bounds for our paths.
DashArray dashArray;
- dashArray.append(1);
- dashArray.append(0);
+ dashArray.push_back(1);
+ dashArray.push_back(0);
context.setLineDash(dashArray, 0);
// Make the device opaque in 10,10 40x40.

Powered by Google App Engine
This is Rietveld 408576698