| 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 822 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 833 void OnNavigate(const CommonNavigationParams& common_params, | 833 void OnNavigate(const CommonNavigationParams& common_params, |
| 834 const StartNavigationParams& start_params, | 834 const StartNavigationParams& start_params, |
| 835 const RequestNavigationParams& request_params); | 835 const RequestNavigationParams& request_params); |
| 836 void OnBeforeUnload(bool is_reload); | 836 void OnBeforeUnload(bool is_reload); |
| 837 void OnSwapIn(); | 837 void OnSwapIn(); |
| 838 void OnSwapOut(int proxy_routing_id, | 838 void OnSwapOut(int proxy_routing_id, |
| 839 bool is_loading, | 839 bool is_loading, |
| 840 const FrameReplicationState& replicated_frame_state); | 840 const FrameReplicationState& replicated_frame_state); |
| 841 void OnDeleteFrame(); | 841 void OnDeleteFrame(); |
| 842 void OnStop(); | 842 void OnStop(); |
| 843 void OnCollapse(bool collapse); |
| 843 void OnShowContextMenu(const gfx::Point& location); | 844 void OnShowContextMenu(const gfx::Point& location); |
| 844 void OnContextMenuClosed(const CustomContextMenuContext& custom_context); | 845 void OnContextMenuClosed(const CustomContextMenuContext& custom_context); |
| 845 void OnCustomContextMenuAction(const CustomContextMenuContext& custom_context, | 846 void OnCustomContextMenuAction(const CustomContextMenuContext& custom_context, |
| 846 unsigned action); | 847 unsigned action); |
| 847 void OnUndo(); | 848 void OnUndo(); |
| 848 void OnRedo(); | 849 void OnRedo(); |
| 849 void OnCut(); | 850 void OnCut(); |
| 850 void OnCopy(); | 851 void OnCopy(); |
| 851 void OnPaste(); | 852 void OnPaste(); |
| 852 void OnPasteAndMatchStyle(); | 853 void OnPasteAndMatchStyle(); |
| (...skipping 585 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1438 interface_provider_bindings_; | 1439 interface_provider_bindings_; |
| 1439 | 1440 |
| 1440 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1441 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1441 | 1442 |
| 1442 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1443 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1443 }; | 1444 }; |
| 1444 | 1445 |
| 1445 } // namespace content | 1446 } // namespace content |
| 1446 | 1447 |
| 1447 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1448 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |