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