Index: content/browser/tab_contents/render_view_host_manager.cc |
diff --git a/content/browser/tab_contents/render_view_host_manager.cc b/content/browser/tab_contents/render_view_host_manager.cc |
index 593933a9bed3c634268d3473c331cfc247504c57..02be74253d850ebbf0e74f8b216d333785c608a9 100644 |
--- a/content/browser/tab_contents/render_view_host_manager.cc |
+++ b/content/browser/tab_contents/render_view_host_manager.cc |
@@ -700,29 +700,37 @@ RenderViewHost* RenderViewHostManager::UpdateRendererStateForNavigate( |
} |
// Otherwise, it's safe to treat this as a pending cross-site transition. |
- // Make sure the old render view stops, in case a load is in progress. |
- render_view_host_->Send(new ViewMsg_Stop(render_view_host_->routing_id())); |
- |
- // Suspend the new render view (i.e., don't let it send the cross-site |
- // Navigate message) until we hear back from the old renderer's |
- // onbeforeunload handler. If the handler returns false, we'll have to |
- // cancel the request. |
- DCHECK(!pending_render_view_host_->are_navigations_suspended()); |
- pending_render_view_host_->SetNavigationsSuspended(true); |
- |
- // Tell the CrossSiteRequestManager that this RVH has a pending cross-site |
- // request, so that ResourceDispatcherHost will know to tell us to run the |
- // old page's onunload handler before it sends the response. |
- pending_render_view_host_->SetHasPendingCrossSiteRequest(true, -1); |
- |
- // We now have a pending RVH. |
- DCHECK(!cross_navigation_pending_); |
- cross_navigation_pending_ = true; |
- // Tell the old render view to run its onbeforeunload handler, since it |
- // doesn't otherwise know that the cross-site request is happening. This |
- // will trigger a call to ShouldClosePage with the reply. |
- render_view_host_->FirePageBeforeUnload(true); |
+ if (!render_view_host_->is_swapped_out()) { |
Charlie Reis
2011/11/18 18:00:13
I'm torn between this approach and having RenderVi
battre
2011/11/21 17:11:57
I did not quite understand whether you prefer shor
|
+ // Make sure the old render view stops, in case a load is in progress. |
+ render_view_host_->Send( |
+ new ViewMsg_Stop(render_view_host_->routing_id())); |
+ |
+ // Suspend the new render view (i.e., don't let it send the cross-site |
+ // Navigate message) until we hear back from the old renderer's |
+ // onbeforeunload handler. If the handler returns false, we'll have to |
+ // cancel the request. |
+ DCHECK(!pending_render_view_host_->are_navigations_suspended()); |
+ pending_render_view_host_->SetNavigationsSuspended(true); |
+ |
+ // Tell the CrossSiteRequestManager that this RVH has a pending cross-site |
+ // request, so that ResourceDispatcherHost will know to tell us to run the |
+ // old page's onunload handler before it sends the response. |
+ pending_render_view_host_->SetHasPendingCrossSiteRequest(true, -1); |
+ |
+ // We now have a pending RVH. |
+ DCHECK(!cross_navigation_pending_); |
+ cross_navigation_pending_ = true; |
+ |
+ // Tell the old render view to run its onbeforeunload handler, since it |
+ // doesn't otherwise know that the cross-site request is happening. This |
+ // will trigger a call to ShouldClosePage with the reply. |
+ render_view_host_->FirePageBeforeUnload(true); |
+ } else { |
+ // We now have a pending RVH. |
+ DCHECK(!cross_navigation_pending_); |
+ cross_navigation_pending_ = true; |
+ } |
return pending_render_view_host_; |
} else { |