| 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 552 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 563 IPC::Message* reply_msg); | 563 IPC::Message* reply_msg); |
| 564 void OnStartDragging(const DropData& drop_data, | 564 void OnStartDragging(const DropData& drop_data, |
| 565 blink::WebDragOperationsMask operations_allowed, | 565 blink::WebDragOperationsMask operations_allowed, |
| 566 const SkBitmap& bitmap, | 566 const SkBitmap& bitmap, |
| 567 const gfx::Vector2d& bitmap_offset_in_dip, | 567 const gfx::Vector2d& bitmap_offset_in_dip, |
| 568 const DragEventSourceInfo& event_info); | 568 const DragEventSourceInfo& event_info); |
| 569 void OnUpdateDragCursor(blink::WebDragOperation drag_operation); | 569 void OnUpdateDragCursor(blink::WebDragOperation drag_operation); |
| 570 void OnTargetDropACK(); | 570 void OnTargetDropACK(); |
| 571 void OnTakeFocus(bool reverse); | 571 void OnTakeFocus(bool reverse); |
| 572 void OnFocusedNodeChanged(bool is_editable_node); | 572 void OnFocusedNodeChanged(bool is_editable_node); |
| 573 void OnAddMessageToConsole(int32 level, | |
| 574 const base::string16& message, | |
| 575 int32 line_no, | |
| 576 const base::string16& source_id); | |
| 577 void OnUpdateInspectorSetting(const std::string& key, | 573 void OnUpdateInspectorSetting(const std::string& key, |
| 578 const std::string& value); | 574 const std::string& value); |
| 579 void OnClosePageACK(); | 575 void OnClosePageACK(); |
| 580 void OnSwapOutACK(); | 576 void OnSwapOutACK(); |
| 581 void OnAccessibilityEvents( | 577 void OnAccessibilityEvents( |
| 582 const std::vector<AccessibilityHostMsg_EventParams>& params); | 578 const std::vector<AccessibilityHostMsg_EventParams>& params); |
| 583 void OnAccessibilityLocationChanges( | 579 void OnAccessibilityLocationChanges( |
| 584 const std::vector<AccessibilityHostMsg_LocationChangeParams>& params); | 580 const std::vector<AccessibilityHostMsg_LocationChangeParams>& params); |
| 585 void OnScriptEvalResponse(int id, const base::ListValue& result); | 581 void OnScriptEvalResponse(int id, const base::ListValue& result); |
| 586 void OnDidZoomURL(double zoom_level, bool remember, const GURL& url); | 582 void OnDidZoomURL(double zoom_level, bool remember, const GURL& url); |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 730 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 726 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
| 731 }; | 727 }; |
| 732 | 728 |
| 733 #if defined(COMPILER_MSVC) | 729 #if defined(COMPILER_MSVC) |
| 734 #pragma warning(pop) | 730 #pragma warning(pop) |
| 735 #endif | 731 #endif |
| 736 | 732 |
| 737 } // namespace content | 733 } // namespace content |
| 738 | 734 |
| 739 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 735 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
| OLD | NEW |