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 536 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
547 IPC::Message* reply_msg); | 547 IPC::Message* reply_msg); |
548 void OnStartDragging(const DropData& drop_data, | 548 void OnStartDragging(const DropData& drop_data, |
549 blink::WebDragOperationsMask operations_allowed, | 549 blink::WebDragOperationsMask operations_allowed, |
550 const SkBitmap& bitmap, | 550 const SkBitmap& bitmap, |
551 const gfx::Vector2d& bitmap_offset_in_dip, | 551 const gfx::Vector2d& bitmap_offset_in_dip, |
552 const DragEventSourceInfo& event_info); | 552 const DragEventSourceInfo& event_info); |
553 void OnUpdateDragCursor(blink::WebDragOperation drag_operation); | 553 void OnUpdateDragCursor(blink::WebDragOperation drag_operation); |
554 void OnTargetDropACK(); | 554 void OnTargetDropACK(); |
555 void OnTakeFocus(bool reverse); | 555 void OnTakeFocus(bool reverse); |
556 void OnFocusedNodeChanged(bool is_editable_node); | 556 void OnFocusedNodeChanged(bool is_editable_node); |
557 void OnAddMessageToConsole(int32 level, | |
558 const base::string16& message, | |
559 int32 line_no, | |
560 const base::string16& source_id); | |
561 void OnUpdateInspectorSetting(const std::string& key, | 557 void OnUpdateInspectorSetting(const std::string& key, |
562 const std::string& value); | 558 const std::string& value); |
563 void OnClosePageACK(); | 559 void OnClosePageACK(); |
564 void OnAccessibilityEvents( | 560 void OnAccessibilityEvents( |
565 const std::vector<AccessibilityHostMsg_EventParams>& params); | 561 const std::vector<AccessibilityHostMsg_EventParams>& params); |
566 void OnAccessibilityLocationChanges( | 562 void OnAccessibilityLocationChanges( |
567 const std::vector<AccessibilityHostMsg_LocationChangeParams>& params); | 563 const std::vector<AccessibilityHostMsg_LocationChangeParams>& params); |
568 void OnDidZoomURL(double zoom_level, bool remember, const GURL& url); | 564 void OnDidZoomURL(double zoom_level, bool remember, const GURL& url); |
569 void OnRequestDesktopNotificationPermission(const GURL& origin, | 565 void OnRequestDesktopNotificationPermission(const GURL& origin, |
570 int callback_id); | 566 int callback_id); |
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
707 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 703 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
708 }; | 704 }; |
709 | 705 |
710 #if defined(COMPILER_MSVC) | 706 #if defined(COMPILER_MSVC) |
711 #pragma warning(pop) | 707 #pragma warning(pop) |
712 #endif | 708 #endif |
713 | 709 |
714 } // namespace content | 710 } // namespace content |
715 | 711 |
716 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 712 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
OLD | NEW |