| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_RENDERER_INPUT_INPUT_HANDLER_WRAPPER_H_ | 5 #ifndef CONTENT_RENDERER_INPUT_INPUT_HANDLER_WRAPPER_H_ |
| 6 #define CONTENT_RENDERER_INPUT_INPUT_HANDLER_WRAPPER_H_ | 6 #define CONTENT_RENDERER_INPUT_INPUT_HANDLER_WRAPPER_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
| 10 #include "base/single_thread_task_runner.h" | 10 #include "base/single_thread_task_runner.h" |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 ui::InputHandlerProxy* input_handler_proxy() { | 35 ui::InputHandlerProxy* input_handler_proxy() { |
| 36 return &input_handler_proxy_; | 36 return &input_handler_proxy_; |
| 37 } | 37 } |
| 38 | 38 |
| 39 void NeedsMainFrame(); | 39 void NeedsMainFrame(); |
| 40 | 40 |
| 41 // InputHandlerProxyClient implementation. | 41 // InputHandlerProxyClient implementation. |
| 42 void WillShutdown() override; | 42 void WillShutdown() override; |
| 43 void TransferActiveWheelFlingAnimation( | 43 void TransferActiveWheelFlingAnimation( |
| 44 const blink::WebActiveWheelFlingParameters& params) override; | 44 const blink::WebActiveWheelFlingParameters& params) override; |
| 45 void DispatchNonBlockingEventToMainThread( |
| 46 ui::ScopedWebInputEvent event, |
| 47 const ui::LatencyInfo& latency_info) override; |
| 45 blink::WebGestureCurve* CreateFlingAnimationCurve( | 48 blink::WebGestureCurve* CreateFlingAnimationCurve( |
| 46 blink::WebGestureDevice deviceSource, | 49 blink::WebGestureDevice deviceSource, |
| 47 const blink::WebFloatPoint& velocity, | 50 const blink::WebFloatPoint& velocity, |
| 48 const blink::WebSize& cumulativeScroll) override; | 51 const blink::WebSize& cumulativeScroll) override; |
| 49 void DidOverscroll(const gfx::Vector2dF& accumulated_overscroll, | 52 void DidOverscroll(const gfx::Vector2dF& accumulated_overscroll, |
| 50 const gfx::Vector2dF& latest_overscroll_delta, | 53 const gfx::Vector2dF& latest_overscroll_delta, |
| 51 const gfx::Vector2dF& current_fling_velocity, | 54 const gfx::Vector2dF& current_fling_velocity, |
| 52 const gfx::PointF& causal_event_viewport_point) override; | 55 const gfx::PointF& causal_event_viewport_point) override; |
| 53 void DidStartFlinging() override; | 56 void DidStartFlinging() override; |
| 54 void DidStopFlinging() override; | 57 void DidStopFlinging() override; |
| 55 void DidAnimateForInput() override; | 58 void DidAnimateForInput() override; |
| 56 | 59 |
| 57 private: | 60 private: |
| 58 InputHandlerManager* input_handler_manager_; | 61 InputHandlerManager* input_handler_manager_; |
| 59 int routing_id_; | 62 int routing_id_; |
| 60 ui::InputHandlerProxy input_handler_proxy_; | 63 ui::InputHandlerProxy input_handler_proxy_; |
| 61 scoped_refptr<base::SingleThreadTaskRunner> main_task_runner_; | 64 scoped_refptr<base::SingleThreadTaskRunner> main_task_runner_; |
| 62 | 65 |
| 63 // Can only be accessed on the main thread. | 66 // Can only be accessed on the main thread. |
| 64 base::WeakPtr<RenderViewImpl> render_view_impl_; | 67 base::WeakPtr<RenderViewImpl> render_view_impl_; |
| 65 | 68 |
| 66 DISALLOW_COPY_AND_ASSIGN(InputHandlerWrapper); | 69 DISALLOW_COPY_AND_ASSIGN(InputHandlerWrapper); |
| 67 }; | 70 }; |
| 68 | 71 |
| 69 } // namespace content | 72 } // namespace content |
| 70 | 73 |
| 71 #endif // CONTENT_RENDERER_INPUT_INPUT_HANDLER_WRAPPER_H_ | 74 #endif // CONTENT_RENDERER_INPUT_INPUT_HANDLER_WRAPPER_H_ |
| OLD | NEW |