| 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 d900dfdcb4541ff363720aad4632323577677753..e496ce34ccd5486d4dd5467344f0f7482d16a6aa 100644
|
| --- a/content/browser/frame_host/render_frame_host_impl.cc
|
| +++ b/content/browser/frame_host/render_frame_host_impl.cc
|
| @@ -760,6 +760,8 @@ bool RenderFrameHostImpl::OnMessageReceived(const IPC::Message &msg) {
|
| OnSerializeAsMHTMLResponse)
|
| IPC_MESSAGE_HANDLER(FrameHostMsg_SelectionChanged, OnSelectionChanged)
|
| IPC_MESSAGE_HANDLER(FrameHostMsg_FocusedNodeChanged, OnFocusedNodeChanged)
|
| + IPC_MESSAGE_HANDLER(FrameHostMsg_SetHasReceivedUserGesture,
|
| + OnSetHasReceivedUserGesture)
|
| #if defined(USE_EXTERNAL_POPUP_MENU)
|
| IPC_MESSAGE_HANDLER(FrameHostMsg_ShowPopup, OnShowPopup)
|
| IPC_MESSAGE_HANDLER(FrameHostMsg_HidePopup, OnHidePopup)
|
| @@ -2199,6 +2201,10 @@ void RenderFrameHostImpl::OnFocusedNodeChanged(
|
| bounds_in_frame_widget.size()));
|
| }
|
|
|
| +void RenderFrameHostImpl::OnSetHasReceivedUserGesture() {
|
| + frame_tree_node_->OnSetHasReceivedUserGesture();
|
| +}
|
| +
|
| #if defined(USE_EXTERNAL_POPUP_MENU)
|
| void RenderFrameHostImpl::OnShowPopup(
|
| const FrameHostMsg_ShowPopup_Params& params) {
|
|
|