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 476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
487 void OnUpdateState(int32 page_id, const PageState& state); | 487 void OnUpdateState(int32 page_id, const PageState& state); |
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(bool uses_temporary_zoom_level); | 491 void OnDocumentAvailableInMainFrame(bool uses_temporary_zoom_level); |
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); | |
498 void OnPasteFromSelectionClipboard(); | 497 void OnPasteFromSelectionClipboard(); |
499 void OnRouteCloseEvent(); | 498 void OnRouteCloseEvent(); |
500 void OnRouteMessageEvent(const ViewMsg_PostMessage_Params& params); | 499 void OnRouteMessageEvent(const ViewMsg_PostMessage_Params& params); |
501 void OnStartDragging(const DropData& drop_data, | 500 void OnStartDragging(const DropData& drop_data, |
502 blink::WebDragOperationsMask operations_allowed, | 501 blink::WebDragOperationsMask operations_allowed, |
503 const SkBitmap& bitmap, | 502 const SkBitmap& bitmap, |
504 const gfx::Vector2d& bitmap_offset_in_dip, | 503 const gfx::Vector2d& bitmap_offset_in_dip, |
505 const DragEventSourceInfo& event_info); | 504 const DragEventSourceInfo& event_info); |
506 void OnUpdateDragCursor(blink::WebDragOperation drag_operation); | 505 void OnUpdateDragCursor(blink::WebDragOperation drag_operation); |
507 void OnTargetDropACK(); | 506 void OnTargetDropACK(); |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
646 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 645 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
647 }; | 646 }; |
648 | 647 |
649 #if defined(COMPILER_MSVC) | 648 #if defined(COMPILER_MSVC) |
650 #pragma warning(pop) | 649 #pragma warning(pop) |
651 #endif | 650 #endif |
652 | 651 |
653 } // namespace content | 652 } // namespace content |
654 | 653 |
655 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 654 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
OLD | NEW |