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