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