| 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 786 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 797 // content/common/*_messages.h for the message that the function is handling. | 797 // content/common/*_messages.h for the message that the function is handling. |
| 798 void OnNavigate(const CommonNavigationParams& common_params, | 798 void OnNavigate(const CommonNavigationParams& common_params, |
| 799 const StartNavigationParams& start_params, | 799 const StartNavigationParams& start_params, |
| 800 const RequestNavigationParams& request_params); | 800 const RequestNavigationParams& request_params); |
| 801 void OnBeforeUnload(bool is_reload); | 801 void OnBeforeUnload(bool is_reload); |
| 802 void OnSwapOut(int proxy_routing_id, | 802 void OnSwapOut(int proxy_routing_id, |
| 803 bool is_loading, | 803 bool is_loading, |
| 804 const FrameReplicationState& replicated_frame_state); | 804 const FrameReplicationState& replicated_frame_state); |
| 805 void OnDeleteFrame(); | 805 void OnDeleteFrame(); |
| 806 void OnStop(); | 806 void OnStop(); |
| 807 void OnCollapseFrameOwner(bool collapse); |
| 807 void OnShowContextMenu(const gfx::Point& location); | 808 void OnShowContextMenu(const gfx::Point& location); |
| 808 void OnContextMenuClosed(const CustomContextMenuContext& custom_context); | 809 void OnContextMenuClosed(const CustomContextMenuContext& custom_context); |
| 809 void OnCustomContextMenuAction(const CustomContextMenuContext& custom_context, | 810 void OnCustomContextMenuAction(const CustomContextMenuContext& custom_context, |
| 810 unsigned action); | 811 unsigned action); |
| 811 void OnUndo(); | 812 void OnUndo(); |
| 812 void OnRedo(); | 813 void OnRedo(); |
| 813 void OnCut(); | 814 void OnCut(); |
| 814 void OnCopy(); | 815 void OnCopy(); |
| 815 void OnPaste(); | 816 void OnPaste(); |
| 816 void OnPasteAndMatchStyle(); | 817 void OnPasteAndMatchStyle(); |
| (...skipping 549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1366 bool browser_side_navigation_pending_ = false; | 1367 bool browser_side_navigation_pending_ = false; |
| 1367 | 1368 |
| 1368 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1369 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1369 | 1370 |
| 1370 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1371 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1371 }; | 1372 }; |
| 1372 | 1373 |
| 1373 } // namespace content | 1374 } // namespace content |
| 1374 | 1375 |
| 1375 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1376 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |