| 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 687f2bf34830d0489370e7e36994ea22ceadf123..ce1203178fc2ba42534cf914ad027e083febceb9 100644
|
| --- a/content/browser/tab_contents/render_view_host_manager.cc
|
| +++ b/content/browser/tab_contents/render_view_host_manager.cc
|
| @@ -187,10 +187,12 @@ bool RenderViewHostManager::ShouldCloseTabOnUnresponsiveRenderer() {
|
| // handler later finishes, this call will be ignored because the state in
|
| // CrossSiteResourceHandler will already be cleaned up.)
|
| ViewMsg_SwapOut_Params params;
|
| + params.closing_process_id = render_view_host_->GetProcess()->GetID();
|
| + params.closing_route_id = render_view_host_->GetRoutingID();
|
| params.new_render_process_host_id =
|
| pending_render_view_host_->GetProcess()->GetID();
|
| params.new_request_id = pending_request_id;
|
| - current_host()->GetProcess()->CrossSiteSwapOutACK(params);
|
| + current_host()->GetProcess()->SimulateSwapOutACK(params);
|
| }
|
| return false;
|
| }
|
|
|