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

Unified Diff: third_party/WebKit/Source/modules/fetch/testing/WorkerInternalsFetch.cpp

Issue 2614663008: Migrate WTF::Vector::append() to ::push_back() [part 13 of N] (Closed)
Patch Set: 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/modules/fetch/testing/WorkerInternalsFetch.cpp
diff --git a/third_party/WebKit/Source/modules/fetch/testing/WorkerInternalsFetch.cpp b/third_party/WebKit/Source/modules/fetch/testing/WorkerInternalsFetch.cpp
index 42c60e507c3c9320b040f0833ad5aa32adcf17f3..cf17d1487349a2bc896c5fea3449a3c4d3730f2b 100644
--- a/third_party/WebKit/Source/modules/fetch/testing/WorkerInternalsFetch.cpp
+++ b/third_party/WebKit/Source/modules/fetch/testing/WorkerInternalsFetch.cpp
@@ -17,7 +17,7 @@ Vector<String> WorkerInternalsFetch::getInternalResponseURLList(
Vector<String> urlList;
urlList.reserveCapacity(response->internalURLList().size());
for (const auto& url : response->internalURLList())
- urlList.append(url);
+ urlList.push_back(url);
return urlList;
}

Powered by Google App Engine
This is Rietveld 408576698