| 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 539 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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(WebKit::WebDragOperation drag_operation); | 553 void OnUpdateDragCursor(WebKit::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, | 557 void OnAddMessageToConsole(int32 level, |
| 558 const string16& message, | 558 const string16& message, |
| 559 int32 line_no, | 559 int32 line_no, |
| 560 const string16& source_id, | 560 const string16& source_id); |
| 561 const string16& stack_trace); | |
| 562 void OnUpdateInspectorSetting(const std::string& key, | 561 void OnUpdateInspectorSetting(const std::string& key, |
| 563 const std::string& value); | 562 const std::string& value); |
| 564 void OnShouldCloseACK( | 563 void OnShouldCloseACK( |
| 565 bool proceed, | 564 bool proceed, |
| 566 const base::TimeTicks& renderer_before_unload_start_time, | 565 const base::TimeTicks& renderer_before_unload_start_time, |
| 567 const base::TimeTicks& renderer_before_unload_end_time); | 566 const base::TimeTicks& renderer_before_unload_end_time); |
| 568 void OnClosePageACK(); | 567 void OnClosePageACK(); |
| 569 void OnSwapOutACK(); | 568 void OnSwapOutACK(); |
| 570 void OnAccessibilityNotifications( | 569 void OnAccessibilityNotifications( |
| 571 const std::vector<AccessibilityHostMsg_NotificationParams>& params); | 570 const std::vector<AccessibilityHostMsg_NotificationParams>& params); |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 715 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 714 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
| 716 }; | 715 }; |
| 717 | 716 |
| 718 #if defined(COMPILER_MSVC) | 717 #if defined(COMPILER_MSVC) |
| 719 #pragma warning(pop) | 718 #pragma warning(pop) |
| 720 #endif | 719 #endif |
| 721 | 720 |
| 722 } // namespace content | 721 } // namespace content |
| 723 | 722 |
| 724 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 723 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
| OLD | NEW |