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

Unified Diff: third_party/WebKit/Source/platform/graphics/GraphicsContext.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/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()) {

Powered by Google App Engine
This is Rietveld 408576698