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 c04e4f57f06d44b39026f30bf7cd0b9746afb153..9fdc95fee29a19d4f06f092e635868e4c9e232ce 100644 |
--- a/content/browser/renderer_host/render_view_host_impl.cc |
+++ b/content/browser/renderer_host/render_view_host_impl.cc |
@@ -1210,8 +1210,6 @@ bool RenderViewHostImpl::OnMessageReceived(const IPC::Message& msg) { |
IPC_MESSAGE_HANDLER(ViewHostMsg_RenderProcessGone, OnRenderProcessGone) |
IPC_MESSAGE_HANDLER(ViewHostMsg_DidRedirectProvisionalLoad, |
OnDidRedirectProvisionalLoad) |
- IPC_MESSAGE_HANDLER(ViewHostMsg_DidFailProvisionalLoadWithError, |
- OnDidFailProvisionalLoadWithError) |
IPC_MESSAGE_HANDLER_GENERIC(ViewHostMsg_FrameNavigate, OnNavigate(msg)) |
IPC_MESSAGE_HANDLER(ViewHostMsg_UpdateState, OnUpdateState) |
IPC_MESSAGE_HANDLER(ViewHostMsg_UpdateTitle, OnUpdateTitle) |
@@ -1435,11 +1433,6 @@ void RenderViewHostImpl::OnDidRedirectProvisionalLoad( |
this, page_id, source_url, target_url); |
} |
-void RenderViewHostImpl::OnDidFailProvisionalLoadWithError( |
- const ViewHostMsg_DidFailProvisionalLoadWithError_Params& params) { |
- delegate_->DidFailProvisionalLoadWithError(this, params); |
-} |
- |
// Called when the renderer navigates. For every frame loaded, we'll get this |
// notification containing parameters identifying the navigation. |
// |