Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(422)

Unified Diff: content/browser/android/overscroll_controller_android.h

Issue 2884423003: Use scroll-boundary-behavior to control overscroll-refresh/glow on android. (Closed)
Patch Set: rebase Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/android/overscroll_controller_android.h
diff --git a/content/browser/android/overscroll_controller_android.h b/content/browser/android/overscroll_controller_android.h
index f049bdc2cd9200ac46d1aa52407a2eb7bcd3938c..348db340be630f4d66571f40710efe33441db663 100644
--- a/content/browser/android/overscroll_controller_android.h
+++ b/content/browser/android/overscroll_controller_android.h
@@ -10,6 +10,7 @@
#include "base/android/scoped_java_ref.h"
#include "base/macros.h"
#include "base/time/time.h"
+#include "content/common/content_export.h"
#include "content/common/input/input_event_ack_state.h"
#include "ui/android/overscroll_glow.h"
#include "ui/android/overscroll_refresh.h"
@@ -34,8 +35,13 @@ namespace content {
// Glue class for handling all inputs into Android-specific overscroll effects,
// both the passive overscroll glow and the active overscroll pull-to-refresh.
// Note that all input coordinates (both for events and overscroll) are in DIPs.
-class OverscrollControllerAndroid : public ui::OverscrollGlowClient {
+class CONTENT_EXPORT OverscrollControllerAndroid
+ : public ui::OverscrollGlowClient {
public:
+ OverscrollControllerAndroid(ui::WindowAndroidCompositor* compositor,
+ float dpi_scale,
+ ui::OverscrollGlow* glow_effect,
+ ui::OverscrollRefresh* refresh_effect);
OverscrollControllerAndroid(
ui::OverscrollRefreshHandler* overscroll_refresh_handler,
ui::WindowAndroidCompositor* compositor,
@@ -75,6 +81,7 @@ class OverscrollControllerAndroid : public ui::OverscrollGlowClient {
const float dpi_scale_;
bool enabled_;
+ bool scroll_update_consumed_;
// TODO(jdduke): Factor out a common API from the two overscroll effects.
std::unique_ptr<ui::OverscrollGlow> glow_effect_;

Powered by Google App Engine
This is Rietveld 408576698