| 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 733 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 744 void OnSelectAll(); | 744 void OnSelectAll(); |
| 745 void OnSelectRange(const gfx::Point& base, const gfx::Point& extent); | 745 void OnSelectRange(const gfx::Point& base, const gfx::Point& extent); |
| 746 void OnAdjustSelectionByCharacterOffset(int start_adjust, int end_adjust); | 746 void OnAdjustSelectionByCharacterOffset(int start_adjust, int end_adjust); |
| 747 void OnUnselect(); | 747 void OnUnselect(); |
| 748 void OnMoveRangeSelectionExtent(const gfx::Point& point); | 748 void OnMoveRangeSelectionExtent(const gfx::Point& point); |
| 749 void OnReplace(const base::string16& text); | 749 void OnReplace(const base::string16& text); |
| 750 void OnReplaceMisspelling(const base::string16& text); | 750 void OnReplaceMisspelling(const base::string16& text); |
| 751 void OnCSSInsertRequest(const std::string& css); | 751 void OnCSSInsertRequest(const std::string& css); |
| 752 void OnAddMessageToConsole(ConsoleMessageLevel level, | 752 void OnAddMessageToConsole(ConsoleMessageLevel level, |
| 753 const std::string& message); | 753 const std::string& message); |
| 754 void OnAddSecurityMessageToConsole(ConsoleMessageLevel level, |
| 755 const std::string& message); |
| 754 void OnJavaScriptExecuteRequest(const base::string16& javascript, | 756 void OnJavaScriptExecuteRequest(const base::string16& javascript, |
| 755 int id, | 757 int id, |
| 756 bool notify_result); | 758 bool notify_result); |
| 757 void OnJavaScriptExecuteRequestForTests(const base::string16& javascript, | 759 void OnJavaScriptExecuteRequestForTests(const base::string16& javascript, |
| 758 int id, | 760 int id, |
| 759 bool notify_result, | 761 bool notify_result, |
| 760 bool has_user_gesture); | 762 bool has_user_gesture); |
| 761 void OnJavaScriptExecuteRequestInIsolatedWorld(const base::string16& jscript, | 763 void OnJavaScriptExecuteRequestInIsolatedWorld(const base::string16& jscript, |
| 762 int id, | 764 int id, |
| 763 bool notify_result, | 765 bool notify_result, |
| (...skipping 459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1223 FrameBlameContext* blame_context_; // Not owned. | 1225 FrameBlameContext* blame_context_; // Not owned. |
| 1224 | 1226 |
| 1225 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1227 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1226 | 1228 |
| 1227 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1229 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1228 }; | 1230 }; |
| 1229 | 1231 |
| 1230 } // namespace content | 1232 } // namespace content |
| 1231 | 1233 |
| 1232 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1234 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |