| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_ANDROID_OVERSCROLL_CONTROLLER_ANDROID_H_ | 5 #ifndef CONTENT_BROWSER_ANDROID_OVERSCROLL_CONTROLLER_ANDROID_H_ |
| 6 #define CONTENT_BROWSER_ANDROID_OVERSCROLL_CONTROLLER_ANDROID_H_ | 6 #define CONTENT_BROWSER_ANDROID_OVERSCROLL_CONTROLLER_ANDROID_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 namespace content { | 30 namespace content { |
| 31 | 31 |
| 32 class ContentViewCoreImpl; | 32 class ContentViewCoreImpl; |
| 33 struct DidOverscrollParams; | 33 struct DidOverscrollParams; |
| 34 | 34 |
| 35 // Glue class for handling all inputs into Android-specific overscroll effects, | 35 // Glue class for handling all inputs into Android-specific overscroll effects, |
| 36 // both the passive overscroll glow and the active overscroll pull-to-refresh. | 36 // both the passive overscroll glow and the active overscroll pull-to-refresh. |
| 37 // Note that all input coordinates (both for events and overscroll) are in DIPs. | 37 // Note that all input coordinates (both for events and overscroll) are in DIPs. |
| 38 class OverscrollControllerAndroid : public ui::OverscrollGlowClient { | 38 class OverscrollControllerAndroid : public ui::OverscrollGlowClient { |
| 39 public: | 39 public: |
| 40 explicit OverscrollControllerAndroid(ContentViewCoreImpl* content_view_core); | 40 explicit OverscrollControllerAndroid(ContentViewCoreImpl* content_view_core, |
| 41 float dpi_scale); |
| 41 ~OverscrollControllerAndroid() override; | 42 ~OverscrollControllerAndroid() override; |
| 42 | 43 |
| 43 // Returns true if |event| is consumed by an overscroll effect, in which | 44 // Returns true if |event| is consumed by an overscroll effect, in which |
| 44 // case it should cease propagation. | 45 // case it should cease propagation. |
| 45 bool WillHandleGestureEvent(const blink::WebGestureEvent& event); | 46 bool WillHandleGestureEvent(const blink::WebGestureEvent& event); |
| 46 | 47 |
| 47 // To be called upon receipt of a gesture event ack. | 48 // To be called upon receipt of a gesture event ack. |
| 48 void OnGestureEventAck(const blink::WebGestureEvent& event, | 49 void OnGestureEventAck(const blink::WebGestureEvent& event, |
| 49 InputEventAckState ack_result); | 50 InputEventAckState ack_result); |
| 50 | 51 |
| (...skipping 26 matching lines...) Expand all Loading... |
| 77 // TODO(jdduke): Factor out a common API from the two overscroll effects. | 78 // TODO(jdduke): Factor out a common API from the two overscroll effects. |
| 78 std::unique_ptr<ui::OverscrollGlow> glow_effect_; | 79 std::unique_ptr<ui::OverscrollGlow> glow_effect_; |
| 79 std::unique_ptr<ui::OverscrollRefresh> refresh_effect_; | 80 std::unique_ptr<ui::OverscrollRefresh> refresh_effect_; |
| 80 | 81 |
| 81 DISALLOW_COPY_AND_ASSIGN(OverscrollControllerAndroid); | 82 DISALLOW_COPY_AND_ASSIGN(OverscrollControllerAndroid); |
| 82 }; | 83 }; |
| 83 | 84 |
| 84 } // namespace content | 85 } // namespace content |
| 85 | 86 |
| 86 #endif // CONTENT_BROWSER_ANDROID_OVERSCROLL_CONTROLLER_ANDROID_H_ | 87 #endif // CONTENT_BROWSER_ANDROID_OVERSCROLL_CONTROLLER_ANDROID_H_ |
| OLD | NEW |