| 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 a5ff5cdcd4a29898e5344cda5b1777c0d969d2ed..d4c011ed9eadd3be3fd12eab00b9555bc31e59dd 100644
|
| --- a/content/browser/frame_host/render_frame_host_impl.cc
|
| +++ b/content/browser/frame_host/render_frame_host_impl.cc
|
| @@ -291,8 +291,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)
|
| @@ -534,14 +532,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,
|
|
|