OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_VIEW_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 968 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
979 void OnReleaseDisambiguationPopupDIB(TransportDIB::Handle dib_handle); | 979 void OnReleaseDisambiguationPopupDIB(TransportDIB::Handle dib_handle); |
980 void OnReloadFrame(); | 980 void OnReloadFrame(); |
981 void OnReplace(const string16& text); | 981 void OnReplace(const string16& text); |
982 void OnResetPageEncodingToDefault(); | 982 void OnResetPageEncodingToDefault(); |
983 void OnScriptEvalRequest(const string16& frame_xpath, | 983 void OnScriptEvalRequest(const string16& frame_xpath, |
984 const string16& jscript, | 984 const string16& jscript, |
985 int id, | 985 int id, |
986 bool notify_result); | 986 bool notify_result); |
987 void OnSelectAll(); | 987 void OnSelectAll(); |
988 void OnSelectRange(const gfx::Point& start, const gfx::Point& end); | 988 void OnSelectRange(const gfx::Point& start, const gfx::Point& end); |
| 989 void OnMoveCaret(const gfx::Point& point); |
989 void OnSetAccessibilityMode(AccessibilityMode new_mode); | 990 void OnSetAccessibilityMode(AccessibilityMode new_mode); |
990 void OnSetActive(bool active); | 991 void OnSetActive(bool active); |
991 void OnSetAltErrorPageURL(const GURL& gurl); | 992 void OnSetAltErrorPageURL(const GURL& gurl); |
992 void OnSetBackground(const SkBitmap& background); | 993 void OnSetBackground(const SkBitmap& background); |
993 void OnSetCompositionFromExistingText( | 994 void OnSetCompositionFromExistingText( |
994 int start, int end, | 995 int start, int end, |
995 const std::vector<WebKit::WebCompositionUnderline>& underlines); | 996 const std::vector<WebKit::WebCompositionUnderline>& underlines); |
996 void OnSetEditableSelectionOffsets(int start, int end); | 997 void OnSetEditableSelectionOffsets(int start, int end); |
997 void OnSetNavigationStartTime( | 998 void OnSetNavigationStartTime( |
998 const base::TimeTicks& browser_navigation_start); | 999 const base::TimeTicks& browser_navigation_start); |
(...skipping 591 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1590 // use the Observer interface to filter IPC messages and receive frame change | 1591 // use the Observer interface to filter IPC messages and receive frame change |
1591 // notifications. | 1592 // notifications. |
1592 // --------------------------------------------------------------------------- | 1593 // --------------------------------------------------------------------------- |
1593 | 1594 |
1594 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1595 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1595 }; | 1596 }; |
1596 | 1597 |
1597 } // namespace content | 1598 } // namespace content |
1598 | 1599 |
1599 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1600 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |