| 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 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 523 void OnCancelDownload(int32_t download_id); | 523 void OnCancelDownload(int32_t download_id); |
| 524 void OnClearFocusedElement(); | 524 void OnClearFocusedElement(); |
| 525 void OnClosePage(); | 525 void OnClosePage(); |
| 526 void OnClose(); | 526 void OnClose(); |
| 527 | 527 |
| 528 void OnShowContextMenu(ui::MenuSourceType source_type, | 528 void OnShowContextMenu(ui::MenuSourceType source_type, |
| 529 const gfx::Point& location); | 529 const gfx::Point& location); |
| 530 void OnDeterminePageLanguage(); | 530 void OnDeterminePageLanguage(); |
| 531 void OnDisableScrollbarsForSmallWindows( | 531 void OnDisableScrollbarsForSmallWindows( |
| 532 const gfx::Size& disable_scrollbars_size_limit); | 532 const gfx::Size& disable_scrollbars_size_limit); |
| 533 void OnDragSourceEnded(const gfx::Point& client_point, | |
| 534 const gfx::Point& screen_point, | |
| 535 blink::WebDragOperation drag_operation); | |
| 536 void OnDragSourceSystemDragEnded(); | |
| 537 void OnEnablePreferredSizeChangedMode(); | 533 void OnEnablePreferredSizeChangedMode(); |
| 538 void OnEnableAutoResize(const gfx::Size& min_size, const gfx::Size& max_size); | 534 void OnEnableAutoResize(const gfx::Size& min_size, const gfx::Size& max_size); |
| 539 void OnDisableAutoResize(const gfx::Size& new_size); | 535 void OnDisableAutoResize(const gfx::Size& new_size); |
| 540 void OnEnumerateDirectoryResponse(int id, | 536 void OnEnumerateDirectoryResponse(int id, |
| 541 const std::vector<base::FilePath>& paths); | 537 const std::vector<base::FilePath>& paths); |
| 542 void OnMediaPlayerActionAt(const gfx::Point& location, | 538 void OnMediaPlayerActionAt(const gfx::Point& location, |
| 543 const blink::WebMediaPlayerAction& action); | 539 const blink::WebMediaPlayerAction& action); |
| 544 void OnPluginActionAt(const gfx::Point& location, | 540 void OnPluginActionAt(const gfx::Point& location, |
| 545 const blink::WebPluginAction& action); | 541 const blink::WebPluginAction& action); |
| 546 void OnMoveOrResizeStarted(); | 542 void OnMoveOrResizeStarted(); |
| (...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 843 // use the Observer interface to filter IPC messages and receive frame change | 839 // use the Observer interface to filter IPC messages and receive frame change |
| 844 // notifications. | 840 // notifications. |
| 845 // --------------------------------------------------------------------------- | 841 // --------------------------------------------------------------------------- |
| 846 | 842 |
| 847 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 843 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 848 }; | 844 }; |
| 849 | 845 |
| 850 } // namespace content | 846 } // namespace content |
| 851 | 847 |
| 852 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 848 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |