| 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 429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 440 void OnRouteMessageEvent(const ViewMsg_PostMessage_Params& params); | 440 void OnRouteMessageEvent(const ViewMsg_PostMessage_Params& params); |
| 441 void OnStartDragging(const DropData& drop_data, | 441 void OnStartDragging(const DropData& drop_data, |
| 442 blink::WebDragOperationsMask operations_allowed, | 442 blink::WebDragOperationsMask operations_allowed, |
| 443 const SkBitmap& bitmap, | 443 const SkBitmap& bitmap, |
| 444 const gfx::Vector2d& bitmap_offset_in_dip, | 444 const gfx::Vector2d& bitmap_offset_in_dip, |
| 445 const DragEventSourceInfo& event_info); | 445 const DragEventSourceInfo& event_info); |
| 446 void OnUpdateDragCursor(blink::WebDragOperation drag_operation); | 446 void OnUpdateDragCursor(blink::WebDragOperation drag_operation); |
| 447 void OnTargetDropACK(); | 447 void OnTargetDropACK(); |
| 448 void OnTakeFocus(bool reverse); | 448 void OnTakeFocus(bool reverse); |
| 449 void OnFocusedNodeChanged(bool is_editable_node); | 449 void OnFocusedNodeChanged(bool is_editable_node); |
| 450 void OnUpdateInspectorSetting(const std::string& key, | |
| 451 const std::string& value); | |
| 452 void OnClosePageACK(); | 450 void OnClosePageACK(); |
| 453 void OnDidZoomURL(double zoom_level, const GURL& url); | 451 void OnDidZoomURL(double zoom_level, const GURL& url); |
| 454 void OnRunFileChooser(const FileChooserParams& params); | 452 void OnRunFileChooser(const FileChooserParams& params); |
| 455 void OnFocusedNodeTouched(bool editable); | 453 void OnFocusedNodeTouched(bool editable); |
| 456 | 454 |
| 457 #if defined(OS_MACOSX) || defined(OS_ANDROID) | 455 #if defined(OS_MACOSX) || defined(OS_ANDROID) |
| 458 void OnShowPopup(const ViewHostMsg_ShowPopup_Params& params); | 456 void OnShowPopup(const ViewHostMsg_ShowPopup_Params& params); |
| 459 void OnHidePopup(); | 457 void OnHidePopup(); |
| 460 #endif | 458 #endif |
| 461 | 459 |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 569 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 567 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
| 570 }; | 568 }; |
| 571 | 569 |
| 572 #if defined(COMPILER_MSVC) | 570 #if defined(COMPILER_MSVC) |
| 573 #pragma warning(pop) | 571 #pragma warning(pop) |
| 574 #endif | 572 #endif |
| 575 | 573 |
| 576 } // namespace content | 574 } // namespace content |
| 577 | 575 |
| 578 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 576 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
| OLD | NEW |