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. |