Home | History | Annotate | Download | only in controls

Lines Matching defs:Throbber

22 class VIEWS_EXPORT Throbber : public View {
28 Throbber(int frame_time_ms, bool paint_while_stopped);
29 Throbber(int frame_time_ms, bool paint_while_stopped, gfx::ImageSkia* frames);
30 virtual ~Throbber();
32 // Start and stop the throbber animation
36 // Set custom throbber frames. Otherwise IDR_THROBBER is loaded.
44 // Specifies whether the throbber is currently animating or not
55 base::RepeatingTimer<Throbber> timer_; // Used to schedule Run calls.
57 DISALLOW_COPY_AND_ASSIGN(Throbber);
60 // A SmoothedThrobber is a throbber that is representing potentially short
62 // pauses in the work stops and starts, and only starts its throbber after
64 class VIEWS_EXPORT SmoothedThrobber : public Throbber {
85 // Delay after work starts before starting throbber, in milliseconds.
97 // A CheckmarkThrobber is a special variant of throbber that has three states:
99 // 2. working (which paints the throbber animation)
102 class VIEWS_EXPORT CheckmarkThrobber : public Throbber {
106 // If checked is true, the throbber stops spinning and displays a checkmark.
107 // If checked is false, the throbber stops spinning and displays nothing.
110 // Overridden from Throbber: