| 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 27 matching lines...) Expand all Loading... |
| 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 virtual void WillShutdown() OVERRIDE; |
| 46 virtual void Animate(base::TimeTicks time) OVERRIDE; | 46 virtual void Animate(base::TimeTicks time) OVERRIDE; |
| 47 virtual void MainThreadHasStoppedFlinging() OVERRIDE; | 47 virtual void MainThreadHasStoppedFlinging() OVERRIDE; |
| 48 virtual void DidOverscroll(const gfx::Vector2dF& accumulated_overscroll, | 48 virtual void DidOverscroll( |
| 49 const gfx::Vector2dF& latest_overscroll_delta) | 49 const gfx::PointF& causal_event_viewport_point, |
| 50 OVERRIDE; | 50 const gfx::Vector2dF& accumulated_overscroll, |
| 51 const gfx::Vector2dF& latest_overscroll_delta) OVERRIDE; |
| 51 | 52 |
| 52 // blink::WebGestureCurveTarget implementation. | 53 // blink::WebGestureCurveTarget implementation. |
| 53 virtual bool scrollBy(const blink::WebFloatSize& offset, | 54 virtual bool scrollBy(const blink::WebFloatSize& offset, |
| 54 const blink::WebFloatSize& velocity); | 55 const blink::WebFloatSize& velocity); |
| 55 | 56 |
| 56 bool gesture_scroll_on_impl_thread_for_testing() const { | 57 bool gesture_scroll_on_impl_thread_for_testing() const { |
| 57 return gesture_scroll_on_impl_thread_; | 58 return gesture_scroll_on_impl_thread_; |
| 58 } | 59 } |
| 59 | 60 |
| 60 private: | 61 private: |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 gfx::Vector2dF current_fling_velocity_; | 118 gfx::Vector2dF current_fling_velocity_; |
| 118 | 119 |
| 119 bool smooth_scroll_enabled_; | 120 bool smooth_scroll_enabled_; |
| 120 | 121 |
| 121 DISALLOW_COPY_AND_ASSIGN(InputHandlerProxy); | 122 DISALLOW_COPY_AND_ASSIGN(InputHandlerProxy); |
| 122 }; | 123 }; |
| 123 | 124 |
| 124 } // namespace content | 125 } // namespace content |
| 125 | 126 |
| 126 #endif // CONTENT_RENDERER_INPUT_INPUT_HANDLER_PROXY_H_ | 127 #endif // CONTENT_RENDERER_INPUT_INPUT_HANDLER_PROXY_H_ |
| OLD | NEW |