| 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 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 424 const int flags, | 424 const int flags, |
| 425 IPC::Message* reply_msg); | 425 IPC::Message* reply_msg); |
| 426 void OnMsgRunBeforeUnloadConfirm(const GURL& frame_url, | 426 void OnMsgRunBeforeUnloadConfirm(const GURL& frame_url, |
| 427 const string16& message, | 427 const string16& message, |
| 428 IPC::Message* reply_msg); | 428 IPC::Message* reply_msg); |
| 429 void OnMsgStartDragging(const WebDropData& drop_data, | 429 void OnMsgStartDragging(const WebDropData& drop_data, |
| 430 WebKit::WebDragOperationsMask operations_allowed, | 430 WebKit::WebDragOperationsMask operations_allowed, |
| 431 const SkBitmap& image, | 431 const SkBitmap& image, |
| 432 const gfx::Point& image_offset); | 432 const gfx::Point& image_offset); |
| 433 void OnUpdateDragCursor(WebKit::WebDragOperation drag_operation); | 433 void OnUpdateDragCursor(WebKit::WebDragOperation drag_operation); |
| 434 void OnTargetDropACK(); |
| 434 void OnTakeFocus(bool reverse); | 435 void OnTakeFocus(bool reverse); |
| 435 void OnAddMessageToConsole(int32 level, | 436 void OnAddMessageToConsole(int32 level, |
| 436 const std::wstring& message, | 437 const std::wstring& message, |
| 437 int32 line_no, | 438 int32 line_no, |
| 438 const std::wstring& source_id); | 439 const std::wstring& source_id); |
| 439 void OnUpdateInspectorSetting(const std::string& key, | 440 void OnUpdateInspectorSetting(const std::string& key, |
| 440 const std::string& value); | 441 const std::string& value); |
| 441 void OnMsgShouldCloseACK(bool proceed); | 442 void OnMsgShouldCloseACK(bool proceed); |
| 442 void OnMsgClosePageACK(); | 443 void OnMsgClosePageACK(); |
| 443 | 444 |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 530 // The termination status of the last render view that terminated. | 531 // The termination status of the last render view that terminated. |
| 531 base::TerminationStatus render_view_termination_status_; | 532 base::TerminationStatus render_view_termination_status_; |
| 532 | 533 |
| 533 // A list of observers that filter messages. Weak references. | 534 // A list of observers that filter messages. Weak references. |
| 534 ObserverList<RenderViewHostObserver> observers_; | 535 ObserverList<RenderViewHostObserver> observers_; |
| 535 | 536 |
| 536 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); | 537 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); |
| 537 }; | 538 }; |
| 538 | 539 |
| 539 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ | 540 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ |
| OLD | NEW |