| 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 544 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 555 IPC::Message* reply_msg); | 555 IPC::Message* reply_msg); |
| 556 void OnStartDragging(const DropData& drop_data, | 556 void OnStartDragging(const DropData& drop_data, |
| 557 blink::WebDragOperationsMask operations_allowed, | 557 blink::WebDragOperationsMask operations_allowed, |
| 558 const SkBitmap& bitmap, | 558 const SkBitmap& bitmap, |
| 559 const gfx::Vector2d& bitmap_offset_in_dip, | 559 const gfx::Vector2d& bitmap_offset_in_dip, |
| 560 const DragEventSourceInfo& event_info); | 560 const DragEventSourceInfo& event_info); |
| 561 void OnUpdateDragCursor(blink::WebDragOperation drag_operation); | 561 void OnUpdateDragCursor(blink::WebDragOperation drag_operation); |
| 562 void OnTargetDropACK(); | 562 void OnTargetDropACK(); |
| 563 void OnTakeFocus(bool reverse); | 563 void OnTakeFocus(bool reverse); |
| 564 void OnFocusedNodeChanged(bool is_editable_node); | 564 void OnFocusedNodeChanged(bool is_editable_node); |
| 565 void OnAddMessageToConsole(int32 level, | |
| 566 const base::string16& message, | |
| 567 int32 line_no, | |
| 568 const base::string16& source_id); | |
| 569 void OnUpdateInspectorSetting(const std::string& key, | 565 void OnUpdateInspectorSetting(const std::string& key, |
| 570 const std::string& value); | 566 const std::string& value); |
| 571 void OnClosePageACK(); | 567 void OnClosePageACK(); |
| 572 void OnAccessibilityEvents( | 568 void OnAccessibilityEvents( |
| 573 const std::vector<AccessibilityHostMsg_EventParams>& params); | 569 const std::vector<AccessibilityHostMsg_EventParams>& params); |
| 574 void OnAccessibilityLocationChanges( | 570 void OnAccessibilityLocationChanges( |
| 575 const std::vector<AccessibilityHostMsg_LocationChangeParams>& params); | 571 const std::vector<AccessibilityHostMsg_LocationChangeParams>& params); |
| 576 void OnScriptEvalResponse(int id, const base::ListValue& result); | 572 void OnScriptEvalResponse(int id, const base::ListValue& result); |
| 577 void OnDidZoomURL(double zoom_level, bool remember, const GURL& url); | 573 void OnDidZoomURL(double zoom_level, bool remember, const GURL& url); |
| 578 void OnRequestDesktopNotificationPermission(const GURL& origin, | 574 void OnRequestDesktopNotificationPermission(const GURL& origin, |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 721 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 717 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
| 722 }; | 718 }; |
| 723 | 719 |
| 724 #if defined(COMPILER_MSVC) | 720 #if defined(COMPILER_MSVC) |
| 725 #pragma warning(pop) | 721 #pragma warning(pop) |
| 726 #endif | 722 #endif |
| 727 | 723 |
| 728 } // namespace content | 724 } // namespace content |
| 729 | 725 |
| 730 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 726 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
| OLD | NEW |