Chromium Code Reviews| 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/android/scoped_java_ref.h" | |
| 10 #include "base/macros.h" | 11 #include "base/macros.h" |
| 11 #include "base/time/time.h" | 12 #include "base/time/time.h" |
| 12 #include "content/common/input/input_event_ack_state.h" | 13 #include "content/common/input/input_event_ack_state.h" |
| 13 #include "ui/android/overscroll_glow.h" | 14 #include "ui/android/overscroll_glow.h" |
| 14 #include "ui/android/overscroll_refresh.h" | 15 #include "ui/android/overscroll_refresh.h" |
| 16 #include "ui/android/overscroll_refresh_handler.h" | |
| 15 #include "ui/gfx/geometry/vector2d_f.h" | 17 #include "ui/gfx/geometry/vector2d_f.h" |
| 16 | 18 |
| 17 namespace blink { | 19 namespace blink { |
| 18 class WebGestureEvent; | 20 class WebGestureEvent; |
| 19 } | 21 } |
| 20 | 22 |
| 21 namespace cc { | 23 namespace cc { |
| 22 class CompositorFrameMetadata; | 24 class CompositorFrameMetadata; |
| 23 class Layer; | 25 class Layer; |
| 24 } | 26 } |
| 25 | 27 |
| 26 namespace ui { | 28 namespace ui { |
| 27 class WindowAndroidCompositor; | 29 class WindowAndroidCompositor; |
| 28 struct DidOverscrollParams; | 30 struct DidOverscrollParams; |
| 29 } | 31 } |
| 30 | 32 |
| 31 namespace content { | 33 namespace content { |
| 32 | 34 |
| 33 class ContentViewCoreImpl; | |
| 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( |
|
boliu
2016/12/03 01:05:28
don't need explicit (only matters if constructor h
rlanday
2016/12/05 19:53:56
Ok
| |
| 41 float dpi_scale); | 41 ui::OverscrollRefreshHandler* overscroll_refresh_handler, |
| 42 ui::WindowAndroidCompositor* compositor, | |
| 43 float dpi_scale); | |
| 42 ~OverscrollControllerAndroid() override; | 44 ~OverscrollControllerAndroid() override; |
| 43 | 45 |
| 44 // Returns true if |event| is consumed by an overscroll effect, in which | 46 // Returns true if |event| is consumed by an overscroll effect, in which |
| 45 // case it should cease propagation. | 47 // case it should cease propagation. |
| 46 bool WillHandleGestureEvent(const blink::WebGestureEvent& event); | 48 bool WillHandleGestureEvent(const blink::WebGestureEvent& event); |
| 47 | 49 |
| 48 // To be called upon receipt of a gesture event ack. | 50 // To be called upon receipt of a gesture event ack. |
| 49 void OnGestureEventAck(const blink::WebGestureEvent& event, | 51 void OnGestureEventAck(const blink::WebGestureEvent& event, |
| 50 InputEventAckState ack_result); | 52 InputEventAckState ack_result); |
| 51 | 53 |
| (...skipping 26 matching lines...) Expand all Loading... | |
| 78 // TODO(jdduke): Factor out a common API from the two overscroll effects. | 80 // TODO(jdduke): Factor out a common API from the two overscroll effects. |
| 79 std::unique_ptr<ui::OverscrollGlow> glow_effect_; | 81 std::unique_ptr<ui::OverscrollGlow> glow_effect_; |
| 80 std::unique_ptr<ui::OverscrollRefresh> refresh_effect_; | 82 std::unique_ptr<ui::OverscrollRefresh> refresh_effect_; |
| 81 | 83 |
| 82 DISALLOW_COPY_AND_ASSIGN(OverscrollControllerAndroid); | 84 DISALLOW_COPY_AND_ASSIGN(OverscrollControllerAndroid); |
| 83 }; | 85 }; |
| 84 | 86 |
| 85 } // namespace content | 87 } // namespace content |
| 86 | 88 |
| 87 #endif // CONTENT_BROWSER_ANDROID_OVERSCROLL_CONTROLLER_ANDROID_H_ | 89 #endif // CONTENT_BROWSER_ANDROID_OVERSCROLL_CONTROLLER_ANDROID_H_ |
| OLD | NEW |