| Index: content/browser/renderer_host/render_view_host_impl.cc
|
| diff --git a/content/browser/renderer_host/render_view_host_impl.cc b/content/browser/renderer_host/render_view_host_impl.cc
|
| index c2b058414bca4b3b6057ddfb37cef3ec8558145d..c7b5498bd225c98c79100f2d0e00dfdeb7e2da41 100644
|
| --- a/content/browser/renderer_host/render_view_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_view_host_impl.cc
|
| @@ -918,7 +918,7 @@ bool RenderViewHostImpl::OnMessageReceived(const IPC::Message& msg) {
|
| OnShowFullscreenWidget)
|
| IPC_MESSAGE_HANDLER_DELAY_REPLY(ViewHostMsg_RunModal, OnRunModal)
|
| IPC_MESSAGE_HANDLER(ViewHostMsg_RenderViewReady, OnRenderViewReady)
|
| - IPC_MESSAGE_HANDLER(ViewHostMsg_RenderViewGone, OnRenderViewGone)
|
| + IPC_MESSAGE_HANDLER(ViewHostMsg_RenderProcessGone, OnRenderProcessGone)
|
| IPC_MESSAGE_HANDLER(ViewHostMsg_DidStartProvisionalLoadForFrame,
|
| OnDidStartProvisionalLoadForFrame)
|
| IPC_MESSAGE_HANDLER(ViewHostMsg_DidRedirectProvisionalLoad,
|
| @@ -1110,7 +1110,7 @@ void RenderViewHostImpl::OnRenderViewReady() {
|
| delegate_->RenderViewReady(this);
|
| }
|
|
|
| -void RenderViewHostImpl::OnRenderViewGone(int status, int exit_code) {
|
| +void RenderViewHostImpl::OnRenderProcessGone(int status, int exit_code) {
|
| // Keep the termination status so we can get at it later when we
|
| // need to know why it died.
|
| render_view_termination_status_ =
|
|
|