| 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 773 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 784 void OnDelete(); | 784 void OnDelete(); |
| 785 void OnSelectAll(); | 785 void OnSelectAll(); |
| 786 void OnSelectRange(const gfx::Point& base, const gfx::Point& extent); | 786 void OnSelectRange(const gfx::Point& base, const gfx::Point& extent); |
| 787 void OnAdjustSelectionByCharacterOffset(int start_adjust, int end_adjust); | 787 void OnAdjustSelectionByCharacterOffset(int start_adjust, int end_adjust); |
| 788 void OnUnselect(); | 788 void OnUnselect(); |
| 789 void OnMoveRangeSelectionExtent(const gfx::Point& point); | 789 void OnMoveRangeSelectionExtent(const gfx::Point& point); |
| 790 void OnReplace(const base::string16& text); | 790 void OnReplace(const base::string16& text); |
| 791 void OnReplaceMisspelling(const base::string16& text); | 791 void OnReplaceMisspelling(const base::string16& text); |
| 792 void OnCopyImageAt(int x, int y); | 792 void OnCopyImageAt(int x, int y); |
| 793 void OnSaveImageAt(int x, int y); | 793 void OnSaveImageAt(int x, int y); |
| 794 void OnCSSInsertRequest(const std::string& css); | |
| 795 void OnAddMessageToConsole(ConsoleMessageLevel level, | 794 void OnAddMessageToConsole(ConsoleMessageLevel level, |
| 796 const std::string& message); | 795 const std::string& message); |
| 797 void OnJavaScriptExecuteRequest(const base::string16& javascript, | 796 void OnJavaScriptExecuteRequest(const base::string16& javascript, |
| 798 int id, | 797 int id, |
| 799 bool notify_result); | 798 bool notify_result); |
| 800 void OnJavaScriptExecuteRequestForTests(const base::string16& javascript, | 799 void OnJavaScriptExecuteRequestForTests(const base::string16& javascript, |
| 801 int id, | 800 int id, |
| 802 bool notify_result, | 801 bool notify_result, |
| 803 bool has_user_gesture); | 802 bool has_user_gesture); |
| 804 void OnJavaScriptExecuteRequestInIsolatedWorld(const base::string16& jscript, | 803 void OnJavaScriptExecuteRequestInIsolatedWorld(const base::string16& jscript, |
| (...skipping 486 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1291 mojom::FrameHostPtr frame_host_; | 1290 mojom::FrameHostPtr frame_host_; |
| 1292 | 1291 |
| 1293 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1292 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1294 | 1293 |
| 1295 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1294 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1296 }; | 1295 }; |
| 1297 | 1296 |
| 1298 } // namespace content | 1297 } // namespace content |
| 1299 | 1298 |
| 1300 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1299 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |