| 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 713 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 724 void OnBeforeUnload(); | 724 void OnBeforeUnload(); |
| 725 void OnSwapOut(int proxy_routing_id, | 725 void OnSwapOut(int proxy_routing_id, |
| 726 bool is_loading, | 726 bool is_loading, |
| 727 const FrameReplicationState& replicated_frame_state); | 727 const FrameReplicationState& replicated_frame_state); |
| 728 void OnDeleteFrame(); | 728 void OnDeleteFrame(); |
| 729 void OnStop(); | 729 void OnStop(); |
| 730 void OnShowContextMenu(const gfx::Point& location); | 730 void OnShowContextMenu(const gfx::Point& location); |
| 731 void OnContextMenuClosed(const CustomContextMenuContext& custom_context); | 731 void OnContextMenuClosed(const CustomContextMenuContext& custom_context); |
| 732 void OnCustomContextMenuAction(const CustomContextMenuContext& custom_context, | 732 void OnCustomContextMenuAction(const CustomContextMenuContext& custom_context, |
| 733 unsigned action); | 733 unsigned action); |
| 734 void OnClickFocusedElement(); |
| 734 void OnUndo(); | 735 void OnUndo(); |
| 735 void OnRedo(); | 736 void OnRedo(); |
| 736 void OnCut(); | 737 void OnCut(); |
| 737 void OnCopy(); | 738 void OnCopy(); |
| 738 void OnPaste(); | 739 void OnPaste(); |
| 739 void OnPasteAndMatchStyle(); | 740 void OnPasteAndMatchStyle(); |
| 740 void OnDelete(); | 741 void OnDelete(); |
| 741 void OnSelectAll(); | 742 void OnSelectAll(); |
| 742 void OnSelectRange(const gfx::Point& base, const gfx::Point& extent); | 743 void OnSelectRange(const gfx::Point& base, const gfx::Point& extent); |
| 743 void OnAdjustSelectionByCharacterOffset(int start_adjust, int end_adjust); | 744 void OnAdjustSelectionByCharacterOffset(int start_adjust, int end_adjust); |
| (...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1215 FrameBlameContext* blame_context_; // Not owned. | 1216 FrameBlameContext* blame_context_; // Not owned. |
| 1216 | 1217 |
| 1217 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1218 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1218 | 1219 |
| 1219 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1220 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1220 }; | 1221 }; |
| 1221 | 1222 |
| 1222 } // namespace content | 1223 } // namespace content |
| 1223 | 1224 |
| 1224 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1225 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |