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

Unified Diff: third_party/WebKit/Source/modules/fetch/FetchManager.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/FetchManager.cpp
diff --git a/third_party/WebKit/Source/modules/fetch/FetchManager.cpp b/third_party/WebKit/Source/modules/fetch/FetchManager.cpp
index 3937edec1d32ea38f8cee1cc5bc21149a9c8e082..c7e01e5c88e847e4e9982cba65612debcd4f11e4 100644
--- a/third_party/WebKit/Source/modules/fetch/FetchManager.cpp
+++ b/third_party/WebKit/Source/modules/fetch/FetchManager.cpp
@@ -303,7 +303,7 @@ FetchManager::Loader::Loader(ExecutionContext* executionContext,
m_didFinishLoading(false),
m_isIsolatedWorld(isIsolatedWorld),
m_executionContext(executionContext) {
- m_urlList.append(request->url());
+ m_urlList.push_back(request->url());
}
FetchManager::Loader::~Loader() {
@@ -320,7 +320,7 @@ DEFINE_TRACE(FetchManager::Loader) {
}
void FetchManager::Loader::didReceiveRedirectTo(const KURL& url) {
- m_urlList.append(url);
+ m_urlList.push_back(url);
}
void FetchManager::Loader::didReceiveResponse(

Powered by Google App Engine
This is Rietveld 408576698