| 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_PROXY_H_ | 5 #ifndef CONTENT_RENDERER_INPUT_INPUT_HANDLER_PROXY_H_ |
| 6 #define CONTENT_RENDERER_INPUT_INPUT_HANDLER_PROXY_H_ | 6 #define CONTENT_RENDERER_INPUT_INPUT_HANDLER_PROXY_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/containers/hash_tables.h" | 9 #include "base/containers/hash_tables.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 DID_HANDLE, | 35 DID_HANDLE, |
| 36 DID_NOT_HANDLE, | 36 DID_NOT_HANDLE, |
| 37 DROP_EVENT | 37 DROP_EVENT |
| 38 }; | 38 }; |
| 39 EventDisposition HandleInputEventWithLatencyInfo( | 39 EventDisposition HandleInputEventWithLatencyInfo( |
| 40 const blink::WebInputEvent& event, | 40 const blink::WebInputEvent& event, |
| 41 ui::LatencyInfo* latency_info); | 41 ui::LatencyInfo* latency_info); |
| 42 EventDisposition HandleInputEvent(const blink::WebInputEvent& event); | 42 EventDisposition HandleInputEvent(const blink::WebInputEvent& event); |
| 43 | 43 |
| 44 // cc::InputHandlerClient implementation. | 44 // cc::InputHandlerClient implementation. |
| 45 virtual void WillShutdown() override; | 45 void WillShutdown() override; |
| 46 virtual void Animate(base::TimeTicks time) override; | 46 void Animate(base::TimeTicks time) override; |
| 47 virtual void MainThreadHasStoppedFlinging() override; | 47 void MainThreadHasStoppedFlinging() override; |
| 48 virtual void DidOverscroll( | 48 void DidOverscroll(const gfx::PointF& causal_event_viewport_point, |
| 49 const gfx::PointF& causal_event_viewport_point, | 49 const gfx::Vector2dF& accumulated_overscroll, |
| 50 const gfx::Vector2dF& accumulated_overscroll, | 50 const gfx::Vector2dF& latest_overscroll_delta) override; |
| 51 const gfx::Vector2dF& latest_overscroll_delta) override; | |
| 52 | 51 |
| 53 // blink::WebGestureCurveTarget implementation. | 52 // blink::WebGestureCurveTarget implementation. |
| 54 virtual bool scrollBy(const blink::WebFloatSize& offset, | 53 virtual bool scrollBy(const blink::WebFloatSize& offset, |
| 55 const blink::WebFloatSize& velocity); | 54 const blink::WebFloatSize& velocity); |
| 56 | 55 |
| 57 bool gesture_scroll_on_impl_thread_for_testing() const { | 56 bool gesture_scroll_on_impl_thread_for_testing() const { |
| 58 return gesture_scroll_on_impl_thread_; | 57 return gesture_scroll_on_impl_thread_; |
| 59 } | 58 } |
| 60 | 59 |
| 61 private: | 60 private: |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 gfx::Vector2dF current_fling_velocity_; | 120 gfx::Vector2dF current_fling_velocity_; |
| 122 | 121 |
| 123 bool smooth_scroll_enabled_; | 122 bool smooth_scroll_enabled_; |
| 124 | 123 |
| 125 DISALLOW_COPY_AND_ASSIGN(InputHandlerProxy); | 124 DISALLOW_COPY_AND_ASSIGN(InputHandlerProxy); |
| 126 }; | 125 }; |
| 127 | 126 |
| 128 } // namespace content | 127 } // namespace content |
| 129 | 128 |
| 130 #endif // CONTENT_RENDERER_INPUT_INPUT_HANDLER_PROXY_H_ | 129 #endif // CONTENT_RENDERER_INPUT_INPUT_HANDLER_PROXY_H_ |
| OLD | NEW |