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

Unified Diff: third_party/WebKit/Source/core/loader/DocumentLoader.cpp

Issue 2617783002: Migrate WTF::Vector::append() to ::push_back() [part 12 of N] (Closed)
Patch Set: rebase 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/core/loader/DocumentLoader.cpp
diff --git a/third_party/WebKit/Source/core/loader/DocumentLoader.cpp b/third_party/WebKit/Source/core/loader/DocumentLoader.cpp
index b9ad38327af7df782be76cae9ec6c00f37dd5eed..a0fa9d4b04155c83b5a2ace615efaa4c741a4ee0 100644
--- a/third_party/WebKit/Source/core/loader/DocumentLoader.cpp
+++ b/third_party/WebKit/Source/core/loader/DocumentLoader.cpp
@@ -620,7 +620,7 @@ void DocumentLoader::clearRedirectChain() {
}
void DocumentLoader::appendRedirect(const KURL& url) {
- m_redirectChain.append(url);
+ m_redirectChain.push_back(url);
}
void DocumentLoader::detachFromFrame() {

Powered by Google App Engine
This is Rietveld 408576698