| 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 729 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 740 void OnMoveCaret(const gfx::Point& point); | 740 void OnMoveCaret(const gfx::Point& point); |
| 741 void OnScrollFocusedEditableNodeIntoRect(const gfx::Rect& rect); | 741 void OnScrollFocusedEditableNodeIntoRect(const gfx::Rect& rect); |
| 742 void OnSetEditCommandsForNextKeyEvent(const EditCommands& edit_commands); | 742 void OnSetEditCommandsForNextKeyEvent(const EditCommands& edit_commands); |
| 743 void OnAllowBindings(int enabled_bindings_flags); | 743 void OnAllowBindings(int enabled_bindings_flags); |
| 744 void OnAllowScriptToClose(bool script_can_close); | 744 void OnAllowScriptToClose(bool script_can_close); |
| 745 void OnCancelDownload(int32 download_id); | 745 void OnCancelDownload(int32 download_id); |
| 746 void OnClearFocusedElement(); | 746 void OnClearFocusedElement(); |
| 747 void OnClosePage(); | 747 void OnClosePage(); |
| 748 void OnShowContextMenu(const gfx::Point& location); | 748 void OnShowContextMenu(const gfx::Point& location); |
| 749 void OnCopyImageAt(int x, int y); | 749 void OnCopyImageAt(int x, int y); |
| 750 void OnSaveImageAt(int x, int y); |
| 750 void OnSetName(const std::string& name); | 751 void OnSetName(const std::string& name); |
| 751 void OnDeterminePageLanguage(); | 752 void OnDeterminePageLanguage(); |
| 752 void OnDisableScrollbarsForSmallWindows( | 753 void OnDisableScrollbarsForSmallWindows( |
| 753 const gfx::Size& disable_scrollbars_size_limit); | 754 const gfx::Size& disable_scrollbars_size_limit); |
| 754 void OnDragSourceEnded(const gfx::Point& client_point, | 755 void OnDragSourceEnded(const gfx::Point& client_point, |
| 755 const gfx::Point& screen_point, | 756 const gfx::Point& screen_point, |
| 756 blink::WebDragOperation drag_operation); | 757 blink::WebDragOperation drag_operation); |
| 757 void OnDragSourceSystemDragEnded(); | 758 void OnDragSourceSystemDragEnded(); |
| 758 void OnDragTargetDrop(const gfx::Point& client_pt, | 759 void OnDragTargetDrop(const gfx::Point& client_pt, |
| 759 const gfx::Point& screen_pt, | 760 const gfx::Point& screen_pt, |
| (...skipping 536 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1296 // use the Observer interface to filter IPC messages and receive frame change | 1297 // use the Observer interface to filter IPC messages and receive frame change |
| 1297 // notifications. | 1298 // notifications. |
| 1298 // --------------------------------------------------------------------------- | 1299 // --------------------------------------------------------------------------- |
| 1299 | 1300 |
| 1300 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1301 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1301 }; | 1302 }; |
| 1302 | 1303 |
| 1303 } // namespace content | 1304 } // namespace content |
| 1304 | 1305 |
| 1305 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1306 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |