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 836 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
847 void OnNavigate(const CommonNavigationParams& common_params, | 847 void OnNavigate(const CommonNavigationParams& common_params, |
848 const StartNavigationParams& start_params, | 848 const StartNavigationParams& start_params, |
849 const RequestNavigationParams& request_params); | 849 const RequestNavigationParams& request_params); |
850 void OnBeforeUnload(bool is_reload); | 850 void OnBeforeUnload(bool is_reload); |
851 void OnSwapIn(); | 851 void OnSwapIn(); |
852 void OnSwapOut(int proxy_routing_id, | 852 void OnSwapOut(int proxy_routing_id, |
853 bool is_loading, | 853 bool is_loading, |
854 const FrameReplicationState& replicated_frame_state); | 854 const FrameReplicationState& replicated_frame_state); |
855 void OnDeleteFrame(); | 855 void OnDeleteFrame(); |
856 void OnStop(); | 856 void OnStop(); |
| 857 void OnCollapse(bool collapse); |
857 void OnShowContextMenu(const gfx::Point& location); | 858 void OnShowContextMenu(const gfx::Point& location); |
858 void OnContextMenuClosed(const CustomContextMenuContext& custom_context); | 859 void OnContextMenuClosed(const CustomContextMenuContext& custom_context); |
859 void OnCustomContextMenuAction(const CustomContextMenuContext& custom_context, | 860 void OnCustomContextMenuAction(const CustomContextMenuContext& custom_context, |
860 unsigned action); | 861 unsigned action); |
861 void OnUndo(); | 862 void OnUndo(); |
862 void OnRedo(); | 863 void OnRedo(); |
863 void OnCut(); | 864 void OnCut(); |
864 void OnCopy(); | 865 void OnCopy(); |
865 void OnPaste(); | 866 void OnPaste(); |
866 void OnPasteAndMatchStyle(); | 867 void OnPasteAndMatchStyle(); |
(...skipping 608 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1475 std::vector<media::RoutingTokenCallback> pending_routing_token_callbacks_; | 1476 std::vector<media::RoutingTokenCallback> pending_routing_token_callbacks_; |
1476 | 1477 |
1477 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1478 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
1478 | 1479 |
1479 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1480 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
1480 }; | 1481 }; |
1481 | 1482 |
1482 } // namespace content | 1483 } // namespace content |
1483 | 1484 |
1484 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1485 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |