| 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 682 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 693 void OnScrollFocusedEditableNodeIntoRect(const gfx::Rect& rect); | 693 void OnScrollFocusedEditableNodeIntoRect(const gfx::Rect& rect); |
| 694 void OnSetEditCommandsForNextKeyEvent(const EditCommands& edit_commands); | 694 void OnSetEditCommandsForNextKeyEvent(const EditCommands& edit_commands); |
| 695 void OnAllowBindings(int enabled_bindings_flags); | 695 void OnAllowBindings(int enabled_bindings_flags); |
| 696 void OnAllowScriptToClose(bool script_can_close); | 696 void OnAllowScriptToClose(bool script_can_close); |
| 697 void OnCancelDownload(int32 download_id); | 697 void OnCancelDownload(int32 download_id); |
| 698 void OnClearFocusedElement(); | 698 void OnClearFocusedElement(); |
| 699 void OnClosePage(); | 699 void OnClosePage(); |
| 700 void OnShowContextMenu(const gfx::Point& location); | 700 void OnShowContextMenu(const gfx::Point& location); |
| 701 void OnCopyImageAt(int x, int y); | 701 void OnCopyImageAt(int x, int y); |
| 702 void OnSaveImageAt(int x, int y); | 702 void OnSaveImageAt(int x, int y); |
| 703 void OnSetName(const std::string& name); | |
| 704 void OnDeterminePageLanguage(); | 703 void OnDeterminePageLanguage(); |
| 705 void OnDisableScrollbarsForSmallWindows( | 704 void OnDisableScrollbarsForSmallWindows( |
| 706 const gfx::Size& disable_scrollbars_size_limit); | 705 const gfx::Size& disable_scrollbars_size_limit); |
| 707 void OnDragSourceEnded(const gfx::Point& client_point, | 706 void OnDragSourceEnded(const gfx::Point& client_point, |
| 708 const gfx::Point& screen_point, | 707 const gfx::Point& screen_point, |
| 709 blink::WebDragOperation drag_operation); | 708 blink::WebDragOperation drag_operation); |
| 710 void OnDragSourceSystemDragEnded(); | 709 void OnDragSourceSystemDragEnded(); |
| 711 void OnDragTargetDrop(const gfx::Point& client_pt, | 710 void OnDragTargetDrop(const gfx::Point& client_pt, |
| 712 const gfx::Point& screen_pt, | 711 const gfx::Point& screen_pt, |
| 713 int key_modifiers); | 712 int key_modifiers); |
| (...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1213 // use the Observer interface to filter IPC messages and receive frame change | 1212 // use the Observer interface to filter IPC messages and receive frame change |
| 1214 // notifications. | 1213 // notifications. |
| 1215 // --------------------------------------------------------------------------- | 1214 // --------------------------------------------------------------------------- |
| 1216 | 1215 |
| 1217 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1216 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1218 }; | 1217 }; |
| 1219 | 1218 |
| 1220 } // namespace content | 1219 } // namespace content |
| 1221 | 1220 |
| 1222 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1221 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |