| 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_VIEW_AURA_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 const SkColorType preferred_color_type) override; | 154 const SkColorType preferred_color_type) override; |
| 155 void CopyFromCompositingSurfaceToVideoFrame( | 155 void CopyFromCompositingSurfaceToVideoFrame( |
| 156 const gfx::Rect& src_subrect, | 156 const gfx::Rect& src_subrect, |
| 157 const scoped_refptr<media::VideoFrame>& target, | 157 const scoped_refptr<media::VideoFrame>& target, |
| 158 const base::Callback<void(const gfx::Rect&, bool)>& callback) override; | 158 const base::Callback<void(const gfx::Rect&, bool)>& callback) override; |
| 159 bool CanCopyToVideoFrame() const override; | 159 bool CanCopyToVideoFrame() const override; |
| 160 void BeginFrameSubscription( | 160 void BeginFrameSubscription( |
| 161 std::unique_ptr<RenderWidgetHostViewFrameSubscriber> subscriber) override; | 161 std::unique_ptr<RenderWidgetHostViewFrameSubscriber> subscriber) override; |
| 162 void EndFrameSubscription() override; | 162 void EndFrameSubscription() override; |
| 163 bool HasAcceleratedSurface(const gfx::Size& desired_size) override; | 163 bool HasAcceleratedSurface(const gfx::Size& desired_size) override; |
| 164 void GetScreenInfo(blink::WebScreenInfo* results) override; | |
| 165 gfx::Rect GetBoundsInRootWindow() override; | 164 gfx::Rect GetBoundsInRootWindow() override; |
| 166 void WheelEventAck(const blink::WebMouseWheelEvent& event, | 165 void WheelEventAck(const blink::WebMouseWheelEvent& event, |
| 167 InputEventAckState ack_result) override; | 166 InputEventAckState ack_result) override; |
| 168 void GestureEventAck(const blink::WebGestureEvent& event, | 167 void GestureEventAck(const blink::WebGestureEvent& event, |
| 169 InputEventAckState ack_result) override; | 168 InputEventAckState ack_result) override; |
| 170 void ProcessAckedTouchEvent(const TouchEventWithLatencyInfo& touch, | 169 void ProcessAckedTouchEvent(const TouchEventWithLatencyInfo& touch, |
| 171 InputEventAckState ack_result) override; | 170 InputEventAckState ack_result) override; |
| 172 std::unique_ptr<SyntheticGestureTarget> CreateSyntheticGestureTarget() | 171 std::unique_ptr<SyntheticGestureTarget> CreateSyntheticGestureTarget() |
| 173 override; | 172 override; |
| 174 InputEventAckState FilterInputEvent( | 173 InputEventAckState FilterInputEvent( |
| (...skipping 518 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 693 int32_t last_active_widget_routing_id_; | 692 int32_t last_active_widget_routing_id_; |
| 694 | 693 |
| 695 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; | 694 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; |
| 696 | 695 |
| 697 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 696 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
| 698 }; | 697 }; |
| 699 | 698 |
| 700 } // namespace content | 699 } // namespace content |
| 701 | 700 |
| 702 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 701 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| OLD | NEW |