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 724 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
735 void OnSerializeAsMHTMLResponse( | 735 void OnSerializeAsMHTMLResponse( |
736 int job_id, | 736 int job_id, |
737 MhtmlSaveStatus save_status, | 737 MhtmlSaveStatus save_status, |
738 const std::set<std::string>& digests_of_uris_of_serialized_resources, | 738 const std::set<std::string>& digests_of_uris_of_serialized_resources, |
739 base::TimeDelta renderer_main_thread_time); | 739 base::TimeDelta renderer_main_thread_time); |
740 void OnSelectionChanged(const base::string16& text, | 740 void OnSelectionChanged(const base::string16& text, |
741 uint32_t offset, | 741 uint32_t offset, |
742 const gfx::Range& range); | 742 const gfx::Range& range); |
743 void OnFocusedNodeChanged(bool is_editable_element, | 743 void OnFocusedNodeChanged(bool is_editable_element, |
744 const gfx::Rect& bounds_in_frame_widget); | 744 const gfx::Rect& bounds_in_frame_widget); |
| 745 void OnSetHasReceivedUserGesture(); |
745 | 746 |
746 #if defined(USE_EXTERNAL_POPUP_MENU) | 747 #if defined(USE_EXTERNAL_POPUP_MENU) |
747 void OnShowPopup(const FrameHostMsg_ShowPopup_Params& params); | 748 void OnShowPopup(const FrameHostMsg_ShowPopup_Params& params); |
748 void OnHidePopup(); | 749 void OnHidePopup(); |
749 #endif | 750 #endif |
750 void OnShowCreatedWindow(int pending_widget_routing_id, | 751 void OnShowCreatedWindow(int pending_widget_routing_id, |
751 WindowOpenDisposition disposition, | 752 WindowOpenDisposition disposition, |
752 const gfx::Rect& initial_rect, | 753 const gfx::Rect& initial_rect, |
753 bool user_gesture); | 754 bool user_gesture); |
754 | 755 |
(...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1133 | 1134 |
1134 // NOTE: This must be the last member. | 1135 // NOTE: This must be the last member. |
1135 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 1136 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
1136 | 1137 |
1137 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 1138 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
1138 }; | 1139 }; |
1139 | 1140 |
1140 } // namespace content | 1141 } // namespace content |
1141 | 1142 |
1142 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 1143 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
OLD | NEW |