| 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 <deque> | 8 #include <deque> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 856 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 867 void OnReplaceMisspelling(const base::string16& text); | 867 void OnReplaceMisspelling(const base::string16& text); |
| 868 void OnScrollFocusedEditableNodeIntoRect(const gfx::Rect& rect); | 868 void OnScrollFocusedEditableNodeIntoRect(const gfx::Rect& rect); |
| 869 void OnSelectAll(); | 869 void OnSelectAll(); |
| 870 void OnSelectRange(const gfx::Point& start, const gfx::Point& end); | 870 void OnSelectRange(const gfx::Point& start, const gfx::Point& end); |
| 871 void OnSetEditCommandsForNextKeyEvent(const EditCommands& edit_commands); | 871 void OnSetEditCommandsForNextKeyEvent(const EditCommands& edit_commands); |
| 872 void OnUndo(); | 872 void OnUndo(); |
| 873 void OnUnselect(); | 873 void OnUnselect(); |
| 874 void OnAllowBindings(int enabled_bindings_flags); | 874 void OnAllowBindings(int enabled_bindings_flags); |
| 875 void OnAllowScriptToClose(bool script_can_close); | 875 void OnAllowScriptToClose(bool script_can_close); |
| 876 void OnCancelDownload(int32 download_id); | 876 void OnCancelDownload(int32 download_id); |
| 877 void OnClearFocusedNode(); | 877 void OnClearFocusedElement(); |
| 878 void OnClosePage(); | 878 void OnClosePage(); |
| 879 void OnShowContextMenu(const gfx::Point& location); | 879 void OnShowContextMenu(const gfx::Point& location); |
| 880 void OnCopyImageAt(int x, int y); | 880 void OnCopyImageAt(int x, int y); |
| 881 void OnCSSInsertRequest(const base::string16& frame_xpath, | 881 void OnCSSInsertRequest(const base::string16& frame_xpath, |
| 882 const std::string& css); | 882 const std::string& css); |
| 883 void OnSetName(const std::string& name); | 883 void OnSetName(const std::string& name); |
| 884 void OnDeterminePageLanguage(); | 884 void OnDeterminePageLanguage(); |
| 885 void OnDisableScrollbarsForSmallWindows( | 885 void OnDisableScrollbarsForSmallWindows( |
| 886 const gfx::Size& disable_scrollbars_size_limit); | 886 const gfx::Size& disable_scrollbars_size_limit); |
| 887 void OnDragSourceEndedOrMoved(const gfx::Point& client_point, | 887 void OnDragSourceEndedOrMoved(const gfx::Point& client_point, |
| (...skipping 567 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1455 // use the Observer interface to filter IPC messages and receive frame change | 1455 // use the Observer interface to filter IPC messages and receive frame change |
| 1456 // notifications. | 1456 // notifications. |
| 1457 // --------------------------------------------------------------------------- | 1457 // --------------------------------------------------------------------------- |
| 1458 | 1458 |
| 1459 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1459 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1460 }; | 1460 }; |
| 1461 | 1461 |
| 1462 } // namespace content | 1462 } // namespace content |
| 1463 | 1463 |
| 1464 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1464 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |