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

Unified Diff: cc/input/scrollbar_animation_controller.h

Issue 2838053002: Remove resize fade delay plumbing. (Closed)
Patch Set: rebase Created 3 years, 8 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 | « no previous file | cc/input/scrollbar_animation_controller.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/input/scrollbar_animation_controller.h
diff --git a/cc/input/scrollbar_animation_controller.h b/cc/input/scrollbar_animation_controller.h
index c34273e57ee835c1cd082014b65aae4544008ae6..6bb9de3274c557b322a0cdf2bd948b6525c7703d 100644
--- a/cc/input/scrollbar_animation_controller.h
+++ b/cc/input/scrollbar_animation_controller.h
@@ -44,7 +44,6 @@ class CC_EXPORT ScrollbarAnimationController {
ElementId scroll_element_id,
ScrollbarAnimationControllerClient* client,
base::TimeDelta fade_delay,
- base::TimeDelta fade_out_resize_delay,
base::TimeDelta fade_duration);
// ScrollbarAnimationController for Desktop Overlay Scrollbar. It has show &
@@ -54,7 +53,6 @@ class CC_EXPORT ScrollbarAnimationController {
ElementId scroll_element_id,
ScrollbarAnimationControllerClient* client,
base::TimeDelta fade_delay,
- base::TimeDelta fade_out_resize_delay,
base::TimeDelta fade_duration,
base::TimeDelta thinning_duration);
@@ -72,10 +70,6 @@ class CC_EXPORT ScrollbarAnimationController {
// Effect both Android and Aura Overlay Scrollbar.
void DidScrollUpdate();
- // DidResize expects to be called when clip layer size changed or scroll layer
- // size changed.
- void DidResize();
-
void DidScrollBegin();
void DidScrollEnd();
@@ -101,13 +95,11 @@ class CC_EXPORT ScrollbarAnimationController {
ScrollbarAnimationController(ElementId scroll_element_id,
ScrollbarAnimationControllerClient* client,
base::TimeDelta fade_delay,
- base::TimeDelta fade_out_resize_delay,
base::TimeDelta fade_duration);
ScrollbarAnimationController(ElementId scroll_element_id,
ScrollbarAnimationControllerClient* client,
base::TimeDelta fade_delay,
- base::TimeDelta fade_out_resize_delay,
base::TimeDelta fade_duration,
base::TimeDelta thinning_duration);
@@ -125,7 +117,7 @@ class CC_EXPORT ScrollbarAnimationController {
void Show();
- void PostDelayedAnimation(AnimationChange animation_change, bool on_resize);
+ void PostDelayedAnimation(AnimationChange animation_change);
bool Captured() const;
@@ -139,7 +131,6 @@ class CC_EXPORT ScrollbarAnimationController {
base::TimeTicks last_awaken_time_;
base::TimeDelta fade_delay_;
- base::TimeDelta fade_out_resize_delay_;
base::TimeDelta fade_duration_;
« no previous file with comments | « no previous file | cc/input/scrollbar_animation_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698