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

Unified Diff: third_party/WebKit/Source/platform/PODFreeListArenaTest.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
« no previous file with comments | « third_party/WebKit/Source/platform/PODArena.h ('k') | third_party/WebKit/Source/platform/PODIntervalTree.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/platform/PODFreeListArenaTest.cpp
diff --git a/third_party/WebKit/Source/platform/PODFreeListArenaTest.cpp b/third_party/WebKit/Source/platform/PODFreeListArenaTest.cpp
index 2f05bbdd8d52da29921e3a54ff039c2acbdd9f42..b29f51832d3a5601b178d7b57947a28136f7d31a 100644
--- a/third_party/WebKit/Source/platform/PODFreeListArenaTest.cpp
+++ b/third_party/WebKit/Source/platform/PODFreeListArenaTest.cpp
@@ -135,7 +135,7 @@ TEST_F(PODFreeListArenaTest, AddsFreedObjectsToFreedList) {
RefPtr<PODFreeListArena<TestClass1>> arena =
PODFreeListArena<TestClass1>::create();
for (int i = 0; i < 100; i++) {
- objects.append(arena->allocateObject());
+ objects.push_back(arena->allocateObject());
}
for (auto* object : objects) {
arena->freeObject(object);
« no previous file with comments | « third_party/WebKit/Source/platform/PODArena.h ('k') | third_party/WebKit/Source/platform/PODIntervalTree.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698