| 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_WIDGET_HOST_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 627 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 638 bool privileged); | 638 bool privileged); |
| 639 void OnUnlockMouse(); | 639 void OnUnlockMouse(); |
| 640 void OnShowDisambiguationPopup(const gfx::Rect& rect_pixels, | 640 void OnShowDisambiguationPopup(const gfx::Rect& rect_pixels, |
| 641 const gfx::Size& size, | 641 const gfx::Size& size, |
| 642 const cc::SharedBitmapId& id); | 642 const cc::SharedBitmapId& id); |
| 643 void OnSelectionBoundsChanged( | 643 void OnSelectionBoundsChanged( |
| 644 const ViewHostMsg_SelectionBounds_Params& params); | 644 const ViewHostMsg_SelectionBounds_Params& params); |
| 645 void OnForwardCompositorProto(const std::vector<uint8_t>& proto); | 645 void OnForwardCompositorProto(const std::vector<uint8_t>& proto); |
| 646 void OnSetNeedsBeginFrames(bool needs_begin_frames); | 646 void OnSetNeedsBeginFrames(bool needs_begin_frames); |
| 647 void OnHittestData(const FrameHostMsg_HittestData_Params& params); | 647 void OnHittestData(const FrameHostMsg_HittestData_Params& params); |
| 648 void OnFocusedNodeTouched(bool editable); |
| 648 void OnStartDragging(const DropData& drop_data, | 649 void OnStartDragging(const DropData& drop_data, |
| 649 blink::WebDragOperationsMask operations_allowed, | 650 blink::WebDragOperationsMask operations_allowed, |
| 650 const SkBitmap& bitmap, | 651 const SkBitmap& bitmap, |
| 651 const gfx::Vector2d& bitmap_offset_in_dip, | 652 const gfx::Vector2d& bitmap_offset_in_dip, |
| 652 const DragEventSourceInfo& event_info); | 653 const DragEventSourceInfo& event_info); |
| 653 void OnUpdateDragCursor(blink::WebDragOperation current_op); | 654 void OnUpdateDragCursor(blink::WebDragOperation current_op); |
| 654 | 655 |
| 655 // Called (either immediately or asynchronously) after we're done with our | 656 // Called (either immediately or asynchronously) after we're done with our |
| 656 // BackingStore and can send an ACK to the renderer so it can paint onto it | 657 // BackingStore and can send an ACK to the renderer so it can paint onto it |
| 657 // again. | 658 // again. |
| (...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 906 #endif | 907 #endif |
| 907 | 908 |
| 908 base::WeakPtrFactory<RenderWidgetHostImpl> weak_factory_; | 909 base::WeakPtrFactory<RenderWidgetHostImpl> weak_factory_; |
| 909 | 910 |
| 910 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); | 911 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); |
| 911 }; | 912 }; |
| 912 | 913 |
| 913 } // namespace content | 914 } // namespace content |
| 914 | 915 |
| 915 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ | 916 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ |
| OLD | NEW |