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 795 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
806 void OnNavigate(const CommonNavigationParams& common_params, | 806 void OnNavigate(const CommonNavigationParams& common_params, |
807 const StartNavigationParams& start_params, | 807 const StartNavigationParams& start_params, |
808 const RequestNavigationParams& request_params); | 808 const RequestNavigationParams& request_params); |
809 void OnBeforeUnload(bool is_reload); | 809 void OnBeforeUnload(bool is_reload); |
810 void OnSwapIn(); | 810 void OnSwapIn(); |
811 void OnSwapOut(int proxy_routing_id, | 811 void OnSwapOut(int proxy_routing_id, |
812 bool is_loading, | 812 bool is_loading, |
813 const FrameReplicationState& replicated_frame_state); | 813 const FrameReplicationState& replicated_frame_state); |
814 void OnDeleteFrame(); | 814 void OnDeleteFrame(); |
815 void OnStop(); | 815 void OnStop(); |
| 816 void OnCollapseFrameOwner(bool collapse); |
816 void OnShowContextMenu(const gfx::Point& location); | 817 void OnShowContextMenu(const gfx::Point& location); |
817 void OnContextMenuClosed(const CustomContextMenuContext& custom_context); | 818 void OnContextMenuClosed(const CustomContextMenuContext& custom_context); |
818 void OnCustomContextMenuAction(const CustomContextMenuContext& custom_context, | 819 void OnCustomContextMenuAction(const CustomContextMenuContext& custom_context, |
819 unsigned action); | 820 unsigned action); |
820 void OnUndo(); | 821 void OnUndo(); |
821 void OnRedo(); | 822 void OnRedo(); |
822 void OnCut(); | 823 void OnCut(); |
823 void OnCopy(); | 824 void OnCopy(); |
824 void OnPaste(); | 825 void OnPaste(); |
825 void OnPasteAndMatchStyle(); | 826 void OnPasteAndMatchStyle(); |
(...skipping 551 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1377 bool browser_side_navigation_pending_ = false; | 1378 bool browser_side_navigation_pending_ = false; |
1378 | 1379 |
1379 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1380 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
1380 | 1381 |
1381 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1382 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
1382 }; | 1383 }; |
1383 | 1384 |
1384 } // namespace content | 1385 } // namespace content |
1385 | 1386 |
1386 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1387 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |