| 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 828 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 839 void OnUndo(); | 839 void OnUndo(); |
| 840 void OnRedo(); | 840 void OnRedo(); |
| 841 void OnCut(); | 841 void OnCut(); |
| 842 void OnCopy(); | 842 void OnCopy(); |
| 843 void OnPaste(); | 843 void OnPaste(); |
| 844 void OnPasteAndMatchStyle(); | 844 void OnPasteAndMatchStyle(); |
| 845 void OnDelete(); | 845 void OnDelete(); |
| 846 void OnSelectAll(); | 846 void OnSelectAll(); |
| 847 void OnSelectRange(const gfx::Point& base, const gfx::Point& extent); | 847 void OnSelectRange(const gfx::Point& base, const gfx::Point& extent); |
| 848 void OnAdjustSelectionByCharacterOffset(int start_adjust, int end_adjust); | 848 void OnAdjustSelectionByCharacterOffset(int start_adjust, int end_adjust); |
| 849 void OnUnselect(); | 849 void OnCollapseSelection(); |
| 850 void OnMoveRangeSelectionExtent(const gfx::Point& point); | 850 void OnMoveRangeSelectionExtent(const gfx::Point& point); |
| 851 void OnReplace(const base::string16& text); | 851 void OnReplace(const base::string16& text); |
| 852 void OnReplaceMisspelling(const base::string16& text); | 852 void OnReplaceMisspelling(const base::string16& text); |
| 853 void OnCopyImageAt(int x, int y); | 853 void OnCopyImageAt(int x, int y); |
| 854 void OnSaveImageAt(int x, int y); | 854 void OnSaveImageAt(int x, int y); |
| 855 void OnAddMessageToConsole(ConsoleMessageLevel level, | 855 void OnAddMessageToConsole(ConsoleMessageLevel level, |
| 856 const std::string& message); | 856 const std::string& message); |
| 857 void OnJavaScriptExecuteRequest(const base::string16& javascript, | 857 void OnJavaScriptExecuteRequest(const base::string16& javascript, |
| 858 int id, | 858 int id, |
| 859 bool notify_result); | 859 bool notify_result); |
| (...skipping 537 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1397 int enabled_bindings_ = 0; | 1397 int enabled_bindings_ = 0; |
| 1398 | 1398 |
| 1399 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1399 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1400 | 1400 |
| 1401 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1401 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1402 }; | 1402 }; |
| 1403 | 1403 |
| 1404 } // namespace content | 1404 } // namespace content |
| 1405 | 1405 |
| 1406 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1406 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |