| 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 <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 533 const GURL& frame_url, | 533 const GURL& frame_url, |
| 534 JavaScriptMessageType type, | 534 JavaScriptMessageType type, |
| 535 IPC::Message* reply_msg); | 535 IPC::Message* reply_msg); |
| 536 void OnMsgRunBeforeUnloadConfirm(const GURL& frame_url, | 536 void OnMsgRunBeforeUnloadConfirm(const GURL& frame_url, |
| 537 const string16& message, | 537 const string16& message, |
| 538 bool is_reload, | 538 bool is_reload, |
| 539 IPC::Message* reply_msg); | 539 IPC::Message* reply_msg); |
| 540 void OnMsgStartDragging(const WebDropData& drop_data, | 540 void OnMsgStartDragging(const WebDropData& drop_data, |
| 541 WebKit::WebDragOperationsMask operations_allowed, | 541 WebKit::WebDragOperationsMask operations_allowed, |
| 542 const SkBitmap& bitmap, | 542 const SkBitmap& bitmap, |
| 543 const gfx::Point& bitmap_offset_in_dip); | 543 const gfx::Vector2d& bitmap_offset_in_dip); |
| 544 void OnUpdateDragCursor(WebKit::WebDragOperation drag_operation); | 544 void OnUpdateDragCursor(WebKit::WebDragOperation drag_operation); |
| 545 void OnTargetDropACK(); | 545 void OnTargetDropACK(); |
| 546 void OnTakeFocus(bool reverse); | 546 void OnTakeFocus(bool reverse); |
| 547 void OnFocusedNodeChanged(bool is_editable_node); | 547 void OnFocusedNodeChanged(bool is_editable_node); |
| 548 void OnAddMessageToConsole(int32 level, | 548 void OnAddMessageToConsole(int32 level, |
| 549 const string16& message, | 549 const string16& message, |
| 550 int32 line_no, | 550 int32 line_no, |
| 551 const string16& source_id); | 551 const string16& source_id); |
| 552 void OnUpdateInspectorSetting(const std::string& key, | 552 void OnUpdateInspectorSetting(const std::string& key, |
| 553 const std::string& value); | 553 const std::string& value); |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 699 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 699 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
| 700 }; | 700 }; |
| 701 | 701 |
| 702 #if defined(COMPILER_MSVC) | 702 #if defined(COMPILER_MSVC) |
| 703 #pragma warning(pop) | 703 #pragma warning(pop) |
| 704 #endif | 704 #endif |
| 705 | 705 |
| 706 } // namespace content | 706 } // namespace content |
| 707 | 707 |
| 708 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 708 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
| OLD | NEW |