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_RENDERER_RENDER_FRAME_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 815 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
826 void OnNavigate(const CommonNavigationParams& common_params, | 826 void OnNavigate(const CommonNavigationParams& common_params, |
827 const StartNavigationParams& start_params, | 827 const StartNavigationParams& start_params, |
828 const RequestNavigationParams& request_params); | 828 const RequestNavigationParams& request_params); |
829 void OnBeforeUnload(bool is_reload); | 829 void OnBeforeUnload(bool is_reload); |
830 void OnSwapIn(); | 830 void OnSwapIn(); |
831 void OnSwapOut(int proxy_routing_id, | 831 void OnSwapOut(int proxy_routing_id, |
832 bool is_loading, | 832 bool is_loading, |
833 const FrameReplicationState& replicated_frame_state); | 833 const FrameReplicationState& replicated_frame_state); |
834 void OnDeleteFrame(); | 834 void OnDeleteFrame(); |
835 void OnStop(); | 835 void OnStop(); |
| 836 void OnCollapse(bool collapse); |
836 void OnShowContextMenu(const gfx::Point& location); | 837 void OnShowContextMenu(const gfx::Point& location); |
837 void OnContextMenuClosed(const CustomContextMenuContext& custom_context); | 838 void OnContextMenuClosed(const CustomContextMenuContext& custom_context); |
838 void OnCustomContextMenuAction(const CustomContextMenuContext& custom_context, | 839 void OnCustomContextMenuAction(const CustomContextMenuContext& custom_context, |
839 unsigned action); | 840 unsigned action); |
840 void OnUndo(); | 841 void OnUndo(); |
841 void OnRedo(); | 842 void OnRedo(); |
842 void OnCut(); | 843 void OnCut(); |
843 void OnCopy(); | 844 void OnCopy(); |
844 void OnPaste(); | 845 void OnPaste(); |
845 void OnPasteAndMatchStyle(); | 846 void OnPasteAndMatchStyle(); |
(...skipping 580 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1426 std::unique_ptr<PendingNavigationInfo> pending_navigation_info_; | 1427 std::unique_ptr<PendingNavigationInfo> pending_navigation_info_; |
1427 | 1428 |
1428 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1429 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
1429 | 1430 |
1430 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1431 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
1431 }; | 1432 }; |
1432 | 1433 |
1433 } // namespace content | 1434 } // namespace content |
1434 | 1435 |
1435 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1436 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |