OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 720 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
731 void OnSerializeAsMHTMLResponse( | 731 void OnSerializeAsMHTMLResponse( |
732 int job_id, | 732 int job_id, |
733 MhtmlSaveStatus save_status, | 733 MhtmlSaveStatus save_status, |
734 const std::set<std::string>& digests_of_uris_of_serialized_resources, | 734 const std::set<std::string>& digests_of_uris_of_serialized_resources, |
735 base::TimeDelta renderer_main_thread_time); | 735 base::TimeDelta renderer_main_thread_time); |
736 void OnSelectionChanged(const base::string16& text, | 736 void OnSelectionChanged(const base::string16& text, |
737 uint32_t offset, | 737 uint32_t offset, |
738 const gfx::Range& range); | 738 const gfx::Range& range); |
739 void OnFocusedNodeChanged(bool is_editable_element, | 739 void OnFocusedNodeChanged(bool is_editable_element, |
740 const gfx::Rect& bounds_in_frame_widget); | 740 const gfx::Rect& bounds_in_frame_widget); |
| 741 void OnSetHasReceivedUserGesture(); |
741 | 742 |
742 #if defined(USE_EXTERNAL_POPUP_MENU) | 743 #if defined(USE_EXTERNAL_POPUP_MENU) |
743 void OnShowPopup(const FrameHostMsg_ShowPopup_Params& params); | 744 void OnShowPopup(const FrameHostMsg_ShowPopup_Params& params); |
744 void OnHidePopup(); | 745 void OnHidePopup(); |
745 #endif | 746 #endif |
746 void OnShowCreatedWindow(int pending_widget_routing_id, | 747 void OnShowCreatedWindow(int pending_widget_routing_id, |
747 WindowOpenDisposition disposition, | 748 WindowOpenDisposition disposition, |
748 const gfx::Rect& initial_rect, | 749 const gfx::Rect& initial_rect, |
749 bool user_gesture); | 750 bool user_gesture); |
750 | 751 |
(...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1129 | 1130 |
1130 // NOTE: This must be the last member. | 1131 // NOTE: This must be the last member. |
1131 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 1132 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
1132 | 1133 |
1133 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 1134 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
1134 }; | 1135 }; |
1135 | 1136 |
1136 } // namespace content | 1137 } // namespace content |
1137 | 1138 |
1138 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 1139 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
OLD | NEW |