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 535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
546 const SkBitmap& bitmap, | 546 const SkBitmap& bitmap, |
547 const gfx::Vector2d& bitmap_offset_in_dip, | 547 const gfx::Vector2d& bitmap_offset_in_dip, |
548 const DragEventSourceInfo& event_info); | 548 const DragEventSourceInfo& event_info); |
549 void OnUpdateDragCursor(WebKit::WebDragOperation drag_operation); | 549 void OnUpdateDragCursor(WebKit::WebDragOperation drag_operation); |
550 void OnTargetDropACK(); | 550 void OnTargetDropACK(); |
551 void OnTakeFocus(bool reverse); | 551 void OnTakeFocus(bool reverse); |
552 void OnFocusedNodeChanged(bool is_editable_node); | 552 void OnFocusedNodeChanged(bool is_editable_node); |
553 void OnAddMessageToConsole(int32 level, | 553 void OnAddMessageToConsole(int32 level, |
554 const string16& message, | 554 const string16& message, |
555 int32 line_no, | 555 int32 line_no, |
556 const string16& source_id); | 556 const string16& source_id, |
| 557 const string16& stack_trace); |
557 void OnUpdateInspectorSetting(const std::string& key, | 558 void OnUpdateInspectorSetting(const std::string& key, |
558 const std::string& value); | 559 const std::string& value); |
559 void OnShouldCloseACK( | 560 void OnShouldCloseACK( |
560 bool proceed, | 561 bool proceed, |
561 const base::TimeTicks& renderer_before_unload_start_time, | 562 const base::TimeTicks& renderer_before_unload_start_time, |
562 const base::TimeTicks& renderer_before_unload_end_time); | 563 const base::TimeTicks& renderer_before_unload_end_time); |
563 void OnClosePageACK(); | 564 void OnClosePageACK(); |
564 void OnSwapOutACK(); | 565 void OnSwapOutACK(); |
565 void OnAccessibilityNotifications( | 566 void OnAccessibilityNotifications( |
566 const std::vector<AccessibilityHostMsg_NotificationParams>& params); | 567 const std::vector<AccessibilityHostMsg_NotificationParams>& params); |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
705 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 706 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
706 }; | 707 }; |
707 | 708 |
708 #if defined(COMPILER_MSVC) | 709 #if defined(COMPILER_MSVC) |
709 #pragma warning(pop) | 710 #pragma warning(pop) |
710 #endif | 711 #endif |
711 | 712 |
712 } // namespace content | 713 } // namespace content |
713 | 714 |
714 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 715 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
OLD | NEW |