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