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

Unified Diff: third_party/WebKit/Source/platform/PODArena.h

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/PODArena.h
diff --git a/third_party/WebKit/Source/platform/PODArena.h b/third_party/WebKit/Source/platform/PODArena.h
index 5d590a7cc38153d7ec52282b94313eaa9d816174..b3653dc99986457e3c53754019c3854ec8ba4c84 100644
--- a/third_party/WebKit/Source/platform/PODArena.h
+++ b/third_party/WebKit/Source/platform/PODArena.h
@@ -129,7 +129,7 @@ class PODArena final : public RefCounted<PODArena> {
if (!ptr) {
if (roundedSize > m_currentChunkSize)
m_currentChunkSize = roundedSize;
- m_chunks.append(
+ m_chunks.push_back(
WTF::wrapUnique(new Chunk(m_allocator.get(), m_currentChunkSize)));
m_current = m_chunks.back().get();
ptr = m_current->allocate(roundedSize);
« no previous file with comments | « third_party/WebKit/Source/platform/Language.cpp ('k') | third_party/WebKit/Source/platform/PODFreeListArenaTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698