| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 556 void OnMsgRunBeforeUnloadConfirm(const GURL& frame_url, | 556 void OnMsgRunBeforeUnloadConfirm(const GURL& frame_url, |
| 557 const string16& message, | 557 const string16& message, |
| 558 IPC::Message* reply_msg); | 558 IPC::Message* reply_msg); |
| 559 void OnMsgStartDragging(const WebDropData& drop_data, | 559 void OnMsgStartDragging(const WebDropData& drop_data, |
| 560 WebKit::WebDragOperationsMask operations_allowed, | 560 WebKit::WebDragOperationsMask operations_allowed, |
| 561 const SkBitmap& image, | 561 const SkBitmap& image, |
| 562 const gfx::Point& image_offset); | 562 const gfx::Point& image_offset); |
| 563 void OnUpdateDragCursor(WebKit::WebDragOperation drag_operation); | 563 void OnUpdateDragCursor(WebKit::WebDragOperation drag_operation); |
| 564 void OnTargetDropACK(); | 564 void OnTargetDropACK(); |
| 565 void OnTakeFocus(bool reverse); | 565 void OnTakeFocus(bool reverse); |
| 566 void OnFocusedNodeChanged(bool is_editable_node); |
| 566 void OnAddMessageToConsole(int32 level, | 567 void OnAddMessageToConsole(int32 level, |
| 567 const string16& message, | 568 const string16& message, |
| 568 int32 line_no, | 569 int32 line_no, |
| 569 const string16& source_id); | 570 const string16& source_id); |
| 570 void OnUpdateInspectorSetting(const std::string& key, | 571 void OnUpdateInspectorSetting(const std::string& key, |
| 571 const std::string& value); | 572 const std::string& value); |
| 572 void OnMsgShouldCloseACK(bool proceed); | 573 void OnMsgShouldCloseACK(bool proceed); |
| 573 void OnMsgClosePageACK(); | 574 void OnMsgClosePageACK(); |
| 574 void OnAccessibilityNotifications( | 575 void OnAccessibilityNotifications( |
| 575 const std::vector<ViewHostMsg_AccessibilityNotification_Params>& params); | 576 const std::vector<ViewHostMsg_AccessibilityNotification_Params>& params); |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 680 typedef std::map<int64, PowerSaveBlocker*> PowerSaveBlockerMap; | 681 typedef std::map<int64, PowerSaveBlocker*> PowerSaveBlockerMap; |
| 681 PowerSaveBlockerMap power_save_blockers_; | 682 PowerSaveBlockerMap power_save_blockers_; |
| 682 | 683 |
| 683 // A list of observers that filter messages. Weak references. | 684 // A list of observers that filter messages. Weak references. |
| 684 ObserverList<content::RenderViewHostObserver> observers_; | 685 ObserverList<content::RenderViewHostObserver> observers_; |
| 685 | 686 |
| 686 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); | 687 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); |
| 687 }; | 688 }; |
| 688 | 689 |
| 689 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ | 690 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ |
| OLD | NEW |