HomeSort by relevance Sort by last modified time
    Searched defs:SmoothedThrobber (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/ui/views/controls/
throbber.cc 103 SmoothedThrobber::SmoothedThrobber(int frame_time_ms)
109 SmoothedThrobber::~SmoothedThrobber() {}
111 void SmoothedThrobber::Start() {
116 this, &SmoothedThrobber::StartDelayOver);
120 void SmoothedThrobber::StartDelayOver() {
124 void SmoothedThrobber::Stop() {
130 this, &SmoothedThrobber::StopDelayOver);
133 void SmoothedThrobber::StopDelayOver()
    [all...]
throbber.h 60 // A SmoothedThrobber is a throbber that is representing potentially short
61 // and nonoverlapping bursts of work. SmoothedThrobber ignores small
64 class VIEWS_EXPORT SmoothedThrobber : public Throbber {
66 explicit SmoothedThrobber(int frame_delay_ms);
67 SmoothedThrobber(int frame_delay_ms, gfx::ImageSkia* frames);
68 virtual ~SmoothedThrobber();
91 base::OneShotTimer<SmoothedThrobber> start_timer_;
92 base::OneShotTimer<SmoothedThrobber> stop_timer_;
94 DISALLOW_COPY_AND_ASSIGN(SmoothedThrobber);

Completed in 706 milliseconds