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

Side by Side Diff: ui/base/animation/throb_animation.h

Issue 8468021: Add OVERRIDE to ui/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes n stuff Created 9 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « ui/base/animation/slide_animation.h ('k') | ui/base/test/ui_cocoa_test_helper.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 UI_BASE_ANIMATION_THROB_ANIMATION_H_ 5 #ifndef UI_BASE_ANIMATION_THROB_ANIMATION_H_
6 #define UI_BASE_ANIMATION_THROB_ANIMATION_H_ 6 #define UI_BASE_ANIMATION_THROB_ANIMATION_H_
7 #pragma once 7 #pragma once
8 8
9 #include "ui/base/animation/slide_animation.h" 9 #include "ui/base/animation/slide_animation.h"
10 10
(...skipping 12 matching lines...) Expand all
23 virtual ~ThrobAnimation() {} 23 virtual ~ThrobAnimation() {}
24 24
25 // Starts throbbing. cycles_til_stop gives the number of cycles to do before 25 // Starts throbbing. cycles_til_stop gives the number of cycles to do before
26 // stopping. A negative value means "throb indefinitely". 26 // stopping. A negative value means "throb indefinitely".
27 void StartThrobbing(int cycles_til_stop); 27 void StartThrobbing(int cycles_til_stop);
28 28
29 // Sets the duration of the slide animation when throbbing. 29 // Sets the duration of the slide animation when throbbing.
30 void SetThrobDuration(int duration) { throb_duration_ = duration; } 30 void SetThrobDuration(int duration) { throb_duration_ = duration; }
31 31
32 // Overridden to reset to the slide duration. 32 // Overridden to reset to the slide duration.
33 virtual void Reset(); 33 virtual void Reset() OVERRIDE;
34 virtual void Show(); 34 virtual void Show() OVERRIDE;
35 virtual void Hide(); 35 virtual void Hide() OVERRIDE;
36 36
37 // Overridden to maintain the slide duration. 37 // Overridden to maintain the slide duration.
38 virtual void SetSlideDuration(int duration); 38 virtual void SetSlideDuration(int duration) OVERRIDE;
39 39
40 // The number of cycles remaining until the animation stops. 40 // The number of cycles remaining until the animation stops.
41 void set_cycles_remaining(int value) { cycles_remaining_ = value; } 41 void set_cycles_remaining(int value) { cycles_remaining_ = value; }
42 int cycles_remaining() const { return cycles_remaining_; } 42 int cycles_remaining() const { return cycles_remaining_; }
43 43
44 protected: 44 protected:
45 // Overriden to continually throb (assuming we're throbbing). 45 // Overriden to continually throb (assuming we're throbbing).
46 virtual void Step(base::TimeTicks time_now); 46 virtual void Step(base::TimeTicks time_now) OVERRIDE;
47 47
48 private: 48 private:
49 // Resets state such that we behave like SlideAnimation. 49 // Resets state such that we behave like SlideAnimation.
50 void ResetForSlide(); 50 void ResetForSlide();
51 51
52 // Duration of the slide animation. 52 // Duration of the slide animation.
53 int slide_duration_; 53 int slide_duration_;
54 54
55 // Duration of the slide animation when throbbing. 55 // Duration of the slide animation when throbbing.
56 int throb_duration_; 56 int throb_duration_;
57 57
58 // If throbbing, this is the number of cycles left. 58 // If throbbing, this is the number of cycles left.
59 int cycles_remaining_; 59 int cycles_remaining_;
60 60
61 // Are we throbbing? 61 // Are we throbbing?
62 bool throbbing_; 62 bool throbbing_;
63 63
64 DISALLOW_COPY_AND_ASSIGN(ThrobAnimation); 64 DISALLOW_COPY_AND_ASSIGN(ThrobAnimation);
65 }; 65 };
66 66
67 } // namespace ui 67 } // namespace ui
68 68
69 #endif // UI_BASE_ANIMATION_THROB_ANIMATION_H_ 69 #endif // UI_BASE_ANIMATION_THROB_ANIMATION_H_
OLDNEW
« no previous file with comments | « ui/base/animation/slide_animation.h ('k') | ui/base/test/ui_cocoa_test_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698