am 956986db: Merge "Fix the problem that m_url is not renewed in WebRequest::OnReceivedRedirect()."

* commit '956986dbdf3b1743aa23250cd55e95b3ca7bb9b7':
  Fix the problem that m_url is not renewed in WebRequest::OnReceivedRedirect().
diff --git a/Source/WebKit/android/WebCoreSupport/WebRequest.cpp b/Source/WebKit/android/WebCoreSupport/WebRequest.cpp
index dda0ee1..144a5ee 100644
--- a/Source/WebKit/android/WebCoreSupport/WebRequest.cpp
+++ b/Source/WebKit/android/WebCoreSupport/WebRequest.cpp
@@ -391,6 +391,7 @@
     ASSERT(m_loadState < Response, "Redirect after receiving response");
     ASSERT(newRequest && newRequest->status().is_success(), "Invalid redirect");
 
+    m_url = newUrl.spec();
     OwnPtr<WebResponse> webResponse(new WebResponse(newRequest));
     webResponse->setUrl(newUrl.spec());
     m_urlLoader->maybeCallOnMainThread(NewRunnableMethod(