| 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 744 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 755 uint32_t offset, | 755 uint32_t offset, |
| 756 const gfx::Range& range); | 756 const gfx::Range& range); |
| 757 void OnFocusedNodeChanged(bool is_editable_element, | 757 void OnFocusedNodeChanged(bool is_editable_element, |
| 758 const gfx::Rect& bounds_in_frame_widget); | 758 const gfx::Rect& bounds_in_frame_widget); |
| 759 void OnSetHasReceivedUserGesture(); | 759 void OnSetHasReceivedUserGesture(); |
| 760 | 760 |
| 761 #if defined(USE_EXTERNAL_POPUP_MENU) | 761 #if defined(USE_EXTERNAL_POPUP_MENU) |
| 762 void OnShowPopup(const FrameHostMsg_ShowPopup_Params& params); | 762 void OnShowPopup(const FrameHostMsg_ShowPopup_Params& params); |
| 763 void OnHidePopup(); | 763 void OnHidePopup(); |
| 764 #endif | 764 #endif |
| 765 #if defined(OS_ANDROID) |
| 766 void OnNavigationHandledByEmbedder(); |
| 767 #endif |
| 765 void OnShowCreatedWindow(int pending_widget_routing_id, | 768 void OnShowCreatedWindow(int pending_widget_routing_id, |
| 766 WindowOpenDisposition disposition, | 769 WindowOpenDisposition disposition, |
| 767 const gfx::Rect& initial_rect, | 770 const gfx::Rect& initial_rect, |
| 768 bool user_gesture); | 771 bool user_gesture); |
| 769 | 772 |
| 770 // Registers Mojo interfaces that this frame host makes available. | 773 // Registers Mojo interfaces that this frame host makes available. |
| 771 void RegisterMojoInterfaces(); | 774 void RegisterMojoInterfaces(); |
| 772 | 775 |
| 773 // Resets any waiting state of this RenderFrameHost that is no longer | 776 // Resets any waiting state of this RenderFrameHost that is no longer |
| 774 // relevant. | 777 // relevant. |
| (...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1129 | 1132 |
| 1130 // NOTE: This must be the last member. | 1133 // NOTE: This must be the last member. |
| 1131 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 1134 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
| 1132 | 1135 |
| 1133 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 1136 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
| 1134 }; | 1137 }; |
| 1135 | 1138 |
| 1136 } // namespace content | 1139 } // namespace content |
| 1137 | 1140 |
| 1138 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 1141 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| OLD | NEW |