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 <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 609 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
620 void OnAllowScriptToClose(bool script_can_close); | 620 void OnAllowScriptToClose(bool script_can_close); |
621 void OnCancelDownload(int32_t download_id); | 621 void OnCancelDownload(int32_t download_id); |
622 void OnClearFocusedElement(); | 622 void OnClearFocusedElement(); |
623 void OnClosePage(); | 623 void OnClosePage(); |
624 void OnClose(); | 624 void OnClose(); |
625 | 625 |
626 void OnShowContextMenu(ui::MenuSourceType source_type, | 626 void OnShowContextMenu(ui::MenuSourceType source_type, |
627 const gfx::Point& location); | 627 const gfx::Point& location); |
628 void OnCopyImageAt(int x, int y); | 628 void OnCopyImageAt(int x, int y); |
629 void OnSaveImageAt(int x, int y); | 629 void OnSaveImageAt(int x, int y); |
| 630 void OnSelectWordIfAnyAt(const blink::WebPoint& position); |
630 void OnDeterminePageLanguage(); | 631 void OnDeterminePageLanguage(); |
631 void OnDisableScrollbarsForSmallWindows( | 632 void OnDisableScrollbarsForSmallWindows( |
632 const gfx::Size& disable_scrollbars_size_limit); | 633 const gfx::Size& disable_scrollbars_size_limit); |
633 void OnDragSourceEnded(const gfx::Point& client_point, | 634 void OnDragSourceEnded(const gfx::Point& client_point, |
634 const gfx::Point& screen_point, | 635 const gfx::Point& screen_point, |
635 blink::WebDragOperation drag_operation); | 636 blink::WebDragOperation drag_operation); |
636 void OnDragSourceSystemDragEnded(); | 637 void OnDragSourceSystemDragEnded(); |
637 void OnDragTargetDrop(const gfx::Point& client_pt, | 638 void OnDragTargetDrop(const gfx::Point& client_pt, |
638 const gfx::Point& screen_pt, | 639 const gfx::Point& screen_pt, |
639 int key_modifiers); | 640 int key_modifiers); |
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1045 // use the Observer interface to filter IPC messages and receive frame change | 1046 // use the Observer interface to filter IPC messages and receive frame change |
1046 // notifications. | 1047 // notifications. |
1047 // --------------------------------------------------------------------------- | 1048 // --------------------------------------------------------------------------- |
1048 | 1049 |
1049 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1050 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1050 }; | 1051 }; |
1051 | 1052 |
1052 } // namespace content | 1053 } // namespace content |
1053 | 1054 |
1054 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1055 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |