Index: third_party/WebKit/Source/platform/graphics/GraphicsContext.cpp |
diff --git a/third_party/WebKit/Source/platform/graphics/GraphicsContext.cpp b/third_party/WebKit/Source/platform/graphics/GraphicsContext.cpp |
index c78395629f48380a264b14c7ceee22411c6ad5de..dcb2f7591ff34d06a6abad32e8692574999595a8 100644 |
--- a/third_party/WebKit/Source/platform/graphics/GraphicsContext.cpp |
+++ b/third_party/WebKit/Source/platform/graphics/GraphicsContext.cpp |
@@ -77,7 +77,7 @@ GraphicsContext::GraphicsContext(PaintController& paintController, |
// FIXME: Do some tests to determine how many states are typically used, and |
// allocate several here. |
- m_paintStateStack.append(GraphicsContextState::create()); |
+ m_paintStateStack.push_back(GraphicsContextState::create()); |
m_paintState = m_paintStateStack.back().get(); |
if (contextDisabled()) { |