Index: content/browser/tab_contents/render_view_host_manager.cc |
=================================================================== |
--- content/browser/tab_contents/render_view_host_manager.cc (revision 110303) |
+++ content/browser/tab_contents/render_view_host_manager.cc (working copy) |
@@ -167,7 +167,7 @@ |
// CrossSiteResourceHandler will already be cleaned up.) |
ViewMsg_SwapOut_Params params; |
params.new_render_process_host_id = |
- pending_render_view_host_->process()->id(); |
+ pending_render_view_host_->process()->GetID(); |
params.new_request_id = pending_request_id; |
current_host()->process()->CrossSiteSwapOutACK(params); |
} |
@@ -194,7 +194,7 @@ |
// then we still need to swap out the old RVH first and run its unload |
// handler. OK for that to happen in the background. |
if (pending_render_view_host_->GetPendingRequestId() == -1) { |
- OnCrossSiteResponse(pending_render_view_host_->process()->id(), |
+ OnCrossSiteResponse(pending_render_view_host_->process()->GetID(), |
pending_render_view_host_->routing_id()); |
} |