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