| Index: content/browser/frame_host/render_frame_host_manager.cc
|
| diff --git a/content/browser/frame_host/render_frame_host_manager.cc b/content/browser/frame_host/render_frame_host_manager.cc
|
| index 6ed8ae303eee8d1b6f1132db9fc04c67910bd2a2..380f6871749da153635007161aed49dc9fd1a3d5 100644
|
| --- a/content/browser/frame_host/render_frame_host_manager.cc
|
| +++ b/content/browser/frame_host/render_frame_host_manager.cc
|
| @@ -482,7 +482,10 @@ void RenderFrameHostManager::OnCrossSiteResponse(
|
| // transfered to a RenderFrameHost. In the other cases, it should be cleared.
|
| // If the NavigationHandle wasn't claimed, this will lead to the cancelation
|
| // of the request in the network stack.
|
| - transfer_navigation_handle_.reset();
|
| + if (transfer_navigation_handle_) {
|
| + transfer_navigation_handle_->set_is_transferring(false);
|
| + transfer_navigation_handle_.reset();
|
| + }
|
|
|
| // If the navigation in the new renderer did not start, inform the
|
| // FrameTreeNode that it stopped loading.
|
|
|