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_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
488 void OnUpdateTargetURL(int32 page_id, const GURL& url); | 488 void OnUpdateTargetURL(int32 page_id, const GURL& url); |
489 void OnClose(); | 489 void OnClose(); |
490 void OnRequestMove(const gfx::Rect& pos); | 490 void OnRequestMove(const gfx::Rect& pos); |
491 void OnDocumentAvailableInMainFrame(); | 491 void OnDocumentAvailableInMainFrame(); |
492 void OnToggleFullscreen(bool enter_fullscreen); | 492 void OnToggleFullscreen(bool enter_fullscreen); |
493 void OnDidContentsPreferredSizeChange(const gfx::Size& new_size); | 493 void OnDidContentsPreferredSizeChange(const gfx::Size& new_size); |
494 void OnDidChangeScrollOffset(); | 494 void OnDidChangeScrollOffset(); |
495 void OnDidChangeScrollOffsetPinningForMainFrame(bool is_pinned_to_left, | 495 void OnDidChangeScrollOffsetPinningForMainFrame(bool is_pinned_to_left, |
496 bool is_pinned_to_right); | 496 bool is_pinned_to_right); |
497 void OnDidChangeNumWheelEvents(int count); | 497 void OnDidChangeNumWheelEvents(int count); |
498 #if defined(OS_ANDROID) | |
499 void OnSelectionRootBoundsChanged(const gfx::Rect& bounds); | |
500 #endif | |
501 void OnPasteFromSelectionClipboard(); | 498 void OnPasteFromSelectionClipboard(); |
502 void OnRouteCloseEvent(); | 499 void OnRouteCloseEvent(); |
503 void OnRouteMessageEvent(const ViewMsg_PostMessage_Params& params); | 500 void OnRouteMessageEvent(const ViewMsg_PostMessage_Params& params); |
504 void OnStartDragging(const DropData& drop_data, | 501 void OnStartDragging(const DropData& drop_data, |
505 blink::WebDragOperationsMask operations_allowed, | 502 blink::WebDragOperationsMask operations_allowed, |
506 const SkBitmap& bitmap, | 503 const SkBitmap& bitmap, |
507 const gfx::Vector2d& bitmap_offset_in_dip, | 504 const gfx::Vector2d& bitmap_offset_in_dip, |
508 const DragEventSourceInfo& event_info); | 505 const DragEventSourceInfo& event_info); |
509 void OnUpdateDragCursor(blink::WebDragOperation drag_operation); | 506 void OnUpdateDragCursor(blink::WebDragOperation drag_operation); |
510 void OnTargetDropACK(); | 507 void OnTargetDropACK(); |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
649 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 646 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
650 }; | 647 }; |
651 | 648 |
652 #if defined(COMPILER_MSVC) | 649 #if defined(COMPILER_MSVC) |
653 #pragma warning(pop) | 650 #pragma warning(pop) |
654 #endif | 651 #endif |
655 | 652 |
656 } // namespace content | 653 } // namespace content |
657 | 654 |
658 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 655 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
OLD | NEW |