| 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..76f59be71cfce0bac8b5359b8b49e0a30cd948da 100644
|
| --- a/content/browser/frame_host/render_frame_host_impl.cc
|
| +++ b/content/browser/frame_host/render_frame_host_impl.cc
|
| @@ -343,6 +343,8 @@ bool RenderFrameHostImpl::OnMessageReceived(const IPC::Message &msg) {
|
| OnCancelDesktopNotification)
|
| IPC_MESSAGE_HANDLER(FrameHostMsg_TextSurroundingSelectionResponse,
|
| OnTextSurroundingSelectionResponse)
|
| + IPC_MESSAGE_HANDLER(FrameHostMsg_BeginNavigation,
|
| + OnBeginNavigation)
|
| IPC_END_MESSAGE_MAP()
|
|
|
| return handled;
|
| @@ -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) {
|
| + NOTIMPLEMENTED();
|
| +}
|
| +
|
| void RenderFrameHostImpl::SetPendingShutdown(const base::Closure& on_swap_out) {
|
| render_view_host_->SetPendingShutdown(on_swap_out);
|
| }
|
|
|