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 537 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
548 const SkBitmap& bitmap, | 548 const SkBitmap& bitmap, |
549 const gfx::Vector2d& bitmap_offset_in_dip, | 549 const gfx::Vector2d& bitmap_offset_in_dip, |
550 const DragEventSourceInfo& event_info); | 550 const DragEventSourceInfo& event_info); |
551 void OnUpdateDragCursor(WebKit::WebDragOperation drag_operation); | 551 void OnUpdateDragCursor(WebKit::WebDragOperation drag_operation); |
552 void OnTargetDropACK(); | 552 void OnTargetDropACK(); |
553 void OnTakeFocus(bool reverse); | 553 void OnTakeFocus(bool reverse); |
554 void OnFocusedNodeChanged(bool is_editable_node); | 554 void OnFocusedNodeChanged(bool is_editable_node); |
555 void OnAddMessageToConsole(int32 level, | 555 void OnAddMessageToConsole(int32 level, |
556 const string16& message, | 556 const string16& message, |
557 int32 line_no, | 557 int32 line_no, |
558 const string16& source_id); | 558 const string16& source_id, |
| 559 const string16& stack_trace); |
559 void OnUpdateInspectorSetting(const std::string& key, | 560 void OnUpdateInspectorSetting(const std::string& key, |
560 const std::string& value); | 561 const std::string& value); |
561 void OnShouldCloseACK( | 562 void OnShouldCloseACK( |
562 bool proceed, | 563 bool proceed, |
563 const base::TimeTicks& renderer_before_unload_start_time, | 564 const base::TimeTicks& renderer_before_unload_start_time, |
564 const base::TimeTicks& renderer_before_unload_end_time); | 565 const base::TimeTicks& renderer_before_unload_end_time); |
565 void OnClosePageACK(); | 566 void OnClosePageACK(); |
566 void OnSwapOutACK(); | 567 void OnSwapOutACK(); |
567 void OnAccessibilityNotifications( | 568 void OnAccessibilityNotifications( |
568 const std::vector<AccessibilityHostMsg_NotificationParams>& params); | 569 const std::vector<AccessibilityHostMsg_NotificationParams>& params); |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
721 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 722 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
722 }; | 723 }; |
723 | 724 |
724 #if defined(COMPILER_MSVC) | 725 #if defined(COMPILER_MSVC) |
725 #pragma warning(pop) | 726 #pragma warning(pop) |
726 #endif | 727 #endif |
727 | 728 |
728 } // namespace content | 729 } // namespace content |
729 | 730 |
730 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 731 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
OLD | NEW |