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

Side by Side Diff: cc/animation/scrollbar_animation_controller_linear_fade.h

Issue 23978008: Suppress scrollbar animation if the scroll gesture does not scroll (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix LayerTreeHostImpl unit tests Created 7 years, 3 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 unified diff | Download patch
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 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 CC_ANIMATION_SCROLLBAR_ANIMATION_CONTROLLER_LINEAR_FADE_H_ 5 #ifndef CC_ANIMATION_SCROLLBAR_ANIMATION_CONTROLLER_LINEAR_FADE_H_
6 #define CC_ANIMATION_SCROLLBAR_ANIMATION_CONTROLLER_LINEAR_FADE_H_ 6 #define CC_ANIMATION_SCROLLBAR_ANIMATION_CONTROLLER_LINEAR_FADE_H_
7 7
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "cc/animation/scrollbar_animation_controller.h" 9 #include "cc/animation/scrollbar_animation_controller.h"
10 #include "cc/base/cc_export.h" 10 #include "cc/base/cc_export.h"
11 11
12 namespace cc { 12 namespace cc {
13 class LayerImpl; 13 class LayerImpl;
14 14
15 class CC_EXPORT ScrollbarAnimationControllerLinearFade 15 class CC_EXPORT ScrollbarAnimationControllerLinearFade
16 : public ScrollbarAnimationController { 16 : public ScrollbarAnimationController {
17 public: 17 public:
18 static scoped_ptr<ScrollbarAnimationControllerLinearFade> Create( 18 static scoped_ptr<ScrollbarAnimationControllerLinearFade> Create(
19 LayerImpl* scroll_layer, 19 LayerImpl* scroll_layer,
20 base::TimeDelta fadeout_delay, 20 base::TimeDelta fadeout_delay,
21 base::TimeDelta fadeout_length); 21 base::TimeDelta fadeout_length);
22 22
23 virtual ~ScrollbarAnimationControllerLinearFade(); 23 virtual ~ScrollbarAnimationControllerLinearFade();
24 24
25 // ScrollbarAnimationController overrides. 25 // ScrollbarAnimationController overrides.
26 virtual bool IsScrollGestureInProgress() const OVERRIDE;
27 virtual bool IsAnimating() const OVERRIDE; 26 virtual bool IsAnimating() const OVERRIDE;
28 virtual base::TimeDelta DelayBeforeStart(base::TimeTicks now) const OVERRIDE; 27 virtual base::TimeDelta DelayBeforeStart(base::TimeTicks now) const OVERRIDE;
29 28
30 virtual bool Animate(base::TimeTicks now) OVERRIDE; 29 virtual bool Animate(base::TimeTicks now) OVERRIDE;
31 virtual void DidScrollGestureBegin() OVERRIDE; 30 virtual void DidScrollGestureBegin() OVERRIDE;
32 virtual void DidScrollGestureEnd(base::TimeTicks now) OVERRIDE; 31 virtual void DidScrollGestureEnd(base::TimeTicks now) OVERRIDE;
33 virtual void DidProgrammaticallyUpdateScroll(base::TimeTicks now) OVERRIDE; 32 virtual void DidScrollUpdate(base::TimeTicks now) OVERRIDE;
34 33
35 protected: 34 protected:
36 ScrollbarAnimationControllerLinearFade(LayerImpl* scroll_layer, 35 ScrollbarAnimationControllerLinearFade(LayerImpl* scroll_layer,
37 base::TimeDelta fadeout_delay, 36 base::TimeDelta fadeout_delay,
38 base::TimeDelta fadeout_length); 37 base::TimeDelta fadeout_length);
39 38
40 private: 39 private:
41 float OpacityAtTime(base::TimeTicks now); 40 float OpacityAtTime(base::TimeTicks now);
42 41
43 LayerImpl* scroll_layer_; 42 LayerImpl* scroll_layer_;
44 43
45 base::TimeTicks last_awaken_time_; 44 base::TimeTicks last_awaken_time_;
46 bool scroll_gesture_in_progress_; 45 bool scroll_gesture_in_progress_;
46 bool scroll_gesture_has_scrolled_;
47 47
48 base::TimeDelta fadeout_delay_; 48 base::TimeDelta fadeout_delay_;
49 base::TimeDelta fadeout_length_; 49 base::TimeDelta fadeout_length_;
50 50
51 DISALLOW_COPY_AND_ASSIGN(ScrollbarAnimationControllerLinearFade); 51 DISALLOW_COPY_AND_ASSIGN(ScrollbarAnimationControllerLinearFade);
52 }; 52 };
53 53
54 } // namespace cc 54 } // namespace cc
55 55
56 #endif // CC_ANIMATION_SCROLLBAR_ANIMATION_CONTROLLER_LINEAR_FADE_H_ 56 #endif // CC_ANIMATION_SCROLLBAR_ANIMATION_CONTROLLER_LINEAR_FADE_H_
OLDNEW
« no previous file with comments | « cc/animation/scrollbar_animation_controller.h ('k') | cc/animation/scrollbar_animation_controller_linear_fade.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698