| 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 12 matching lines...) Expand all Loading... |
| 23 class Layer; | 23 class Layer; |
| 24 } | 24 } |
| 25 | 25 |
| 26 namespace ui { | 26 namespace ui { |
| 27 class WindowAndroidCompositor; | 27 class WindowAndroidCompositor; |
| 28 struct DidOverscrollParams; | 28 struct DidOverscrollParams; |
| 29 } | 29 } |
| 30 | 30 |
| 31 namespace content { | 31 namespace content { |
| 32 | 32 |
| 33 class ContentViewCoreImpl; | |
| 34 | |
| 35 // Glue class for handling all inputs into Android-specific overscroll effects, | 33 // Glue class for handling all inputs into Android-specific overscroll effects, |
| 36 // both the passive overscroll glow and the active overscroll pull-to-refresh. | 34 // 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. | 35 // Note that all input coordinates (both for events and overscroll) are in DIPs. |
| 38 class OverscrollControllerAndroid : public ui::OverscrollGlowClient { | 36 class OverscrollControllerAndroid : public ui::OverscrollGlowClient { |
| 39 public: | 37 public: |
| 40 explicit OverscrollControllerAndroid(ContentViewCoreImpl* content_view_core, | 38 explicit OverscrollControllerAndroid( |
| 41 float dpi_scale); | 39 ui::OverscrollRefreshHandler* overscroll_refresh_handler, |
| 40 ui::WindowAndroidCompositor* compositor, |
| 41 float dpi_scale); |
| 42 ~OverscrollControllerAndroid() override; | 42 ~OverscrollControllerAndroid() override; |
| 43 | 43 |
| 44 // 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 |
| 45 // case it should cease propagation. | 45 // case it should cease propagation. |
| 46 bool WillHandleGestureEvent(const blink::WebGestureEvent& event); | 46 bool WillHandleGestureEvent(const blink::WebGestureEvent& event); |
| 47 | 47 |
| 48 // To be called upon receipt of a gesture event ack. | 48 // To be called upon receipt of a gesture event ack. |
| 49 void OnGestureEventAck(const blink::WebGestureEvent& event, | 49 void OnGestureEventAck(const blink::WebGestureEvent& event, |
| 50 InputEventAckState ack_result); | 50 InputEventAckState ack_result); |
| 51 | 51 |
| (...skipping 26 matching lines...) Expand all Loading... |
| 78 // 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. |
| 79 std::unique_ptr<ui::OverscrollGlow> glow_effect_; | 79 std::unique_ptr<ui::OverscrollGlow> glow_effect_; |
| 80 std::unique_ptr<ui::OverscrollRefresh> refresh_effect_; | 80 std::unique_ptr<ui::OverscrollRefresh> refresh_effect_; |
| 81 | 81 |
| 82 DISALLOW_COPY_AND_ASSIGN(OverscrollControllerAndroid); | 82 DISALLOW_COPY_AND_ASSIGN(OverscrollControllerAndroid); |
| 83 }; | 83 }; |
| 84 | 84 |
| 85 } // namespace content | 85 } // namespace content |
| 86 | 86 |
| 87 #endif // CONTENT_BROWSER_ANDROID_OVERSCROLL_CONTROLLER_ANDROID_H_ | 87 #endif // CONTENT_BROWSER_ANDROID_OVERSCROLL_CONTROLLER_ANDROID_H_ |
| OLD | NEW |