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 717 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
728 void OnBeforeUnload(); | 728 void OnBeforeUnload(); |
729 void OnSwapOut(int proxy_routing_id, | 729 void OnSwapOut(int proxy_routing_id, |
730 bool is_loading, | 730 bool is_loading, |
731 const FrameReplicationState& replicated_frame_state); | 731 const FrameReplicationState& replicated_frame_state); |
732 void OnDeleteFrame(); | 732 void OnDeleteFrame(); |
733 void OnStop(); | 733 void OnStop(); |
734 void OnShowContextMenu(const gfx::Point& location); | 734 void OnShowContextMenu(const gfx::Point& location); |
735 void OnContextMenuClosed(const CustomContextMenuContext& custom_context); | 735 void OnContextMenuClosed(const CustomContextMenuContext& custom_context); |
736 void OnCustomContextMenuAction(const CustomContextMenuContext& custom_context, | 736 void OnCustomContextMenuAction(const CustomContextMenuContext& custom_context, |
737 unsigned action); | 737 unsigned action); |
| 738 void OnReloadLoFiImages(); |
738 void OnUndo(); | 739 void OnUndo(); |
739 void OnRedo(); | 740 void OnRedo(); |
740 void OnCut(); | 741 void OnCut(); |
741 void OnCopy(); | 742 void OnCopy(); |
742 void OnPaste(); | 743 void OnPaste(); |
743 void OnPasteAndMatchStyle(); | 744 void OnPasteAndMatchStyle(); |
744 void OnDelete(); | 745 void OnDelete(); |
745 void OnSelectAll(); | 746 void OnSelectAll(); |
746 void OnSelectRange(const gfx::Point& base, const gfx::Point& extent); | 747 void OnSelectRange(const gfx::Point& base, const gfx::Point& extent); |
747 void OnAdjustSelectionByCharacterOffset(int start_adjust, int end_adjust); | 748 void OnAdjustSelectionByCharacterOffset(int start_adjust, int end_adjust); |
(...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1195 #endif | 1196 #endif |
1196 | 1197 |
1197 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1198 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
1198 | 1199 |
1199 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1200 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
1200 }; | 1201 }; |
1201 | 1202 |
1202 } // namespace content | 1203 } // namespace content |
1203 | 1204 |
1204 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1205 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |