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 5331fa80db85f6a9e96d2e897f327b34e95adeb0..719c86adcbed6911014018375ce12829527febec 100644 |
--- a/content/browser/frame_host/render_frame_host_impl.cc |
+++ b/content/browser/frame_host/render_frame_host_impl.cc |
@@ -335,6 +335,8 @@ bool RenderFrameHostImpl::OnMessageReceived(const IPC::Message &msg) { |
IPC_MESSAGE_HANDLER(FrameHostMsg_DidDisownOpener, OnDidDisownOpener) |
IPC_MESSAGE_HANDLER(FrameHostMsg_UpdateTitle, OnUpdateTitle) |
IPC_MESSAGE_HANDLER(FrameHostMsg_UpdateEncoding, OnUpdateEncoding) |
+ IPC_MESSAGE_HANDLER(FrameHostMsg_BeginNavigation, |
+ OnBeginNavigation) |
IPC_MESSAGE_HANDLER(DesktopNotificationHostMsg_RequestPermission, |
OnRequestDesktopNotificationPermission) |
IPC_MESSAGE_HANDLER(DesktopNotificationHostMsg_Show, |
@@ -771,6 +773,11 @@ void RenderFrameHostImpl::OnUpdateEncoding(const std::string& encoding_name) { |
delegate_->UpdateEncoding(this, encoding_name); |
} |
+void RenderFrameHostImpl::OnBeginNavigation( |
+ const FrameHostMsg_BeginNavigation_Params& params) { |
+ frame_tree_node()->render_manager()->BeginNavigation(params); |
+} |
+ |
void RenderFrameHostImpl::SetPendingShutdown(const base::Closure& on_swap_out) { |
render_view_host_->SetPendingShutdown(on_swap_out); |
} |