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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
707 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 708 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
708 }; | 709 }; |
709 | 710 |
710 #if defined(COMPILER_MSVC) | 711 #if defined(COMPILER_MSVC) |
711 #pragma warning(pop) | 712 #pragma warning(pop) |
712 #endif | 713 #endif |
713 | 714 |
714 } // namespace content | 715 } // namespace content |
715 | 716 |
716 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 717 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
OLD | NEW |