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 957 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
968 const WebKit::WebPluginAction& action); | 968 const WebKit::WebPluginAction& action); |
969 void OnMoveOrResizeStarted(); | 969 void OnMoveOrResizeStarted(); |
970 void OnNavigate(const ViewMsg_Navigate_Params& params); | 970 void OnNavigate(const ViewMsg_Navigate_Params& params); |
971 void OnPaste(); | 971 void OnPaste(); |
972 void OnPasteAndMatchStyle(); | 972 void OnPasteAndMatchStyle(); |
973 void OnPostMessageEvent(const ViewMsg_PostMessage_Params& params); | 973 void OnPostMessageEvent(const ViewMsg_PostMessage_Params& params); |
974 void OnRedo(); | 974 void OnRedo(); |
975 void OnReleaseDisambiguationPopupDIB(TransportDIB::Handle dib_handle); | 975 void OnReleaseDisambiguationPopupDIB(TransportDIB::Handle dib_handle); |
976 void OnReloadFrame(); | 976 void OnReloadFrame(); |
977 void OnReplace(const string16& text); | 977 void OnReplace(const string16& text); |
| 978 void OnReplaceMisspelling(const string16& text); |
978 void OnResetPageEncodingToDefault(); | 979 void OnResetPageEncodingToDefault(); |
979 void OnScriptEvalRequest(const string16& frame_xpath, | 980 void OnScriptEvalRequest(const string16& frame_xpath, |
980 const string16& jscript, | 981 const string16& jscript, |
981 int id, | 982 int id, |
982 bool notify_result); | 983 bool notify_result); |
983 void OnSelectAll(); | 984 void OnSelectAll(); |
984 void OnSelectRange(const gfx::Point& start, const gfx::Point& end); | 985 void OnSelectRange(const gfx::Point& start, const gfx::Point& end); |
985 void OnMoveCaret(const gfx::Point& point); | 986 void OnMoveCaret(const gfx::Point& point); |
986 void OnSetAccessibilityMode(AccessibilityMode new_mode); | 987 void OnSetAccessibilityMode(AccessibilityMode new_mode); |
987 void OnSetActive(bool active); | 988 void OnSetActive(bool active); |
(...skipping 600 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1588 // use the Observer interface to filter IPC messages and receive frame change | 1589 // use the Observer interface to filter IPC messages and receive frame change |
1589 // notifications. | 1590 // notifications. |
1590 // --------------------------------------------------------------------------- | 1591 // --------------------------------------------------------------------------- |
1591 | 1592 |
1592 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1593 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1593 }; | 1594 }; |
1594 | 1595 |
1595 } // namespace content | 1596 } // namespace content |
1596 | 1597 |
1597 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1598 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |