| 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() {
|
|
|