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

Unified Diff: ui/android/overscroll_glow.h

Issue 2884423003: Use scroll-boundary-behavior to control overscroll-refresh/glow on android. (Closed)
Patch Set: Rebase Created 3 years, 4 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
« no previous file with comments | « third_party/WebKit/public/web/WebWidgetClient.h ('k') | ui/android/overscroll_glow.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/android/overscroll_glow.h
diff --git a/ui/android/overscroll_glow.h b/ui/android/overscroll_glow.h
index 8253de04575409bc89361f322adc9399fa1c124f..64cb4ce82f861bbe26f7dbb024b0c5e6ad366398 100644
--- a/ui/android/overscroll_glow.h
+++ b/ui/android/overscroll_glow.h
@@ -47,11 +47,12 @@ class UI_ANDROID_EXPORT OverscrollGlow {
// |velocity| is in device pixels / second.
// |overscroll_location| is the coordinate of the causal overscrolling event.
// Returns true if the effect still needs animation ticks.
- bool OnOverscrolled(base::TimeTicks current_time,
- const gfx::Vector2dF& accumulated_overscroll,
- gfx::Vector2dF overscroll_delta,
- gfx::Vector2dF velocity,
- const gfx::Vector2dF& overscroll_location);
+ // This method is made virtual for mocking.
+ virtual bool OnOverscrolled(base::TimeTicks current_time,
+ gfx::Vector2dF accumulated_overscroll,
+ gfx::Vector2dF overscroll_delta,
+ gfx::Vector2dF velocity,
+ gfx::Vector2dF overscroll_location);
// Returns true if the effect still needs animation ticks, with effect layers
// attached to |parent_layer| if necessary.
« no previous file with comments | « third_party/WebKit/public/web/WebWidgetClient.h ('k') | ui/android/overscroll_glow.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698