Index: content/browser/frame_host/render_frame_host_impl.cc |
diff --git a/content/browser/frame_host/render_frame_host_impl.cc b/content/browser/frame_host/render_frame_host_impl.cc |
index 69f74e2654d75cfaeab2e8db0ae8b56169254f41..c53f7426a8196c5508e0d9ea6b7652bd60f1646d 100644 |
--- a/content/browser/frame_host/render_frame_host_impl.cc |
+++ b/content/browser/frame_host/render_frame_host_impl.cc |
@@ -276,8 +276,6 @@ bool RenderFrameHostImpl::OnMessageReceived(const IPC::Message &msg) { |
OnDidFailLoadWithError) |
IPC_MESSAGE_HANDLER_GENERIC(FrameHostMsg_DidCommitProvisionalLoad, |
OnNavigate(msg)) |
- IPC_MESSAGE_HANDLER(FrameHostMsg_DidStartLoading, OnDidStartLoading) |
- IPC_MESSAGE_HANDLER(FrameHostMsg_DidStopLoading, OnDidStopLoading) |
IPC_MESSAGE_HANDLER(FrameHostMsg_OpenURL, OnOpenURL) |
IPC_MESSAGE_HANDLER(FrameHostMsg_DocumentOnLoadCompleted, |
OnDocumentOnLoadCompleted) |
@@ -518,14 +516,6 @@ void RenderFrameHostImpl::SwapOut() { |
frame_tree_node_->render_manager()->SwappedOut(this); |
} |
-void RenderFrameHostImpl::OnDidStartLoading(bool to_different_document) { |
- delegate_->DidStartLoading(this, to_different_document); |
-} |
- |
-void RenderFrameHostImpl::OnDidStopLoading() { |
- delegate_->DidStopLoading(this); |
-} |
- |
void RenderFrameHostImpl::OnBeforeUnloadACK( |
bool proceed, |
const base::TimeTicks& renderer_before_unload_start_time, |