| 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 420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 431 const int flags, | 431 const int flags, |
| 432 IPC::Message* reply_msg); | 432 IPC::Message* reply_msg); |
| 433 void OnMsgRunBeforeUnloadConfirm(const GURL& frame_url, | 433 void OnMsgRunBeforeUnloadConfirm(const GURL& frame_url, |
| 434 const string16& message, | 434 const string16& message, |
| 435 IPC::Message* reply_msg); | 435 IPC::Message* reply_msg); |
| 436 void OnMsgStartDragging(const WebDropData& drop_data, | 436 void OnMsgStartDragging(const WebDropData& drop_data, |
| 437 WebKit::WebDragOperationsMask operations_allowed, | 437 WebKit::WebDragOperationsMask operations_allowed, |
| 438 const SkBitmap& image, | 438 const SkBitmap& image, |
| 439 const gfx::Point& image_offset); | 439 const gfx::Point& image_offset); |
| 440 void OnUpdateDragCursor(WebKit::WebDragOperation drag_operation); | 440 void OnUpdateDragCursor(WebKit::WebDragOperation drag_operation); |
| 441 void OnTargetDropACK(); |
| 441 void OnTakeFocus(bool reverse); | 442 void OnTakeFocus(bool reverse); |
| 442 void OnAddMessageToConsole(int32 level, | 443 void OnAddMessageToConsole(int32 level, |
| 443 const std::wstring& message, | 444 const std::wstring& message, |
| 444 int32 line_no, | 445 int32 line_no, |
| 445 const std::wstring& source_id); | 446 const std::wstring& source_id); |
| 446 void OnUpdateInspectorSetting(const std::string& key, | 447 void OnUpdateInspectorSetting(const std::string& key, |
| 447 const std::string& value); | 448 const std::string& value); |
| 448 void OnMsgShouldCloseACK(bool proceed); | 449 void OnMsgShouldCloseACK(bool proceed); |
| 449 void OnMsgClosePageACK(); | 450 void OnMsgClosePageACK(); |
| 450 void OnAccessibilityNotifications( | 451 void OnAccessibilityNotifications( |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 541 // The termination status of the last render view that terminated. | 542 // The termination status of the last render view that terminated. |
| 542 base::TerminationStatus render_view_termination_status_; | 543 base::TerminationStatus render_view_termination_status_; |
| 543 | 544 |
| 544 // A list of observers that filter messages. Weak references. | 545 // A list of observers that filter messages. Weak references. |
| 545 ObserverList<RenderViewHostObserver> observers_; | 546 ObserverList<RenderViewHostObserver> observers_; |
| 546 | 547 |
| 547 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); | 548 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); |
| 548 }; | 549 }; |
| 549 | 550 |
| 550 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ | 551 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ |
| OLD | NEW |