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 <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
475 void OnRouteMessageEvent(const ViewMsg_PostMessage_Params& params); | 475 void OnRouteMessageEvent(const ViewMsg_PostMessage_Params& params); |
476 void OnStartDragging(const DropData& drop_data, | 476 void OnStartDragging(const DropData& drop_data, |
477 blink::WebDragOperationsMask operations_allowed, | 477 blink::WebDragOperationsMask operations_allowed, |
478 const SkBitmap& bitmap, | 478 const SkBitmap& bitmap, |
479 const gfx::Vector2d& bitmap_offset_in_dip, | 479 const gfx::Vector2d& bitmap_offset_in_dip, |
480 const DragEventSourceInfo& event_info); | 480 const DragEventSourceInfo& event_info); |
481 void OnUpdateDragCursor(blink::WebDragOperation drag_operation); | 481 void OnUpdateDragCursor(blink::WebDragOperation drag_operation); |
482 void OnTargetDropACK(); | 482 void OnTargetDropACK(); |
483 void OnTakeFocus(bool reverse); | 483 void OnTakeFocus(bool reverse); |
484 void OnFocusedNodeChanged(bool is_editable_node); | 484 void OnFocusedNodeChanged(bool is_editable_node); |
485 void OnUpdateInspectorSetting(const std::string& key, | |
486 const std::string& value); | |
487 void OnClosePageACK(); | 485 void OnClosePageACK(); |
488 void OnDidZoomURL(double zoom_level, const GURL& url); | 486 void OnDidZoomURL(double zoom_level, const GURL& url); |
489 void OnRunFileChooser(const FileChooserParams& params); | 487 void OnRunFileChooser(const FileChooserParams& params); |
490 void OnFocusedNodeTouched(bool editable); | 488 void OnFocusedNodeTouched(bool editable); |
491 | 489 |
492 #if defined(OS_MACOSX) || defined(OS_ANDROID) | 490 #if defined(OS_MACOSX) || defined(OS_ANDROID) |
493 void OnShowPopup(const ViewHostMsg_ShowPopup_Params& params); | 491 void OnShowPopup(const ViewHostMsg_ShowPopup_Params& params); |
494 void OnHidePopup(); | 492 void OnHidePopup(); |
495 #endif | 493 #endif |
496 | 494 |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
615 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 613 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
616 }; | 614 }; |
617 | 615 |
618 #if defined(COMPILER_MSVC) | 616 #if defined(COMPILER_MSVC) |
619 #pragma warning(pop) | 617 #pragma warning(pop) |
620 #endif | 618 #endif |
621 | 619 |
622 } // namespace content | 620 } // namespace content |
623 | 621 |
624 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 622 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
OLD | NEW |