| 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 08d7c0fddc1adf1e2d20d48274410a228606e738..009e9368d9fe44643b1a6e0a34760d7f945f6fb9 100644
|
| --- a/content/browser/frame_host/render_frame_host_impl.cc
|
| +++ b/content/browser/frame_host/render_frame_host_impl.cc
|
| @@ -290,8 +290,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)
|
| @@ -526,14 +524,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,
|
|
|