Lines Matching refs:Throbber
5 #include "ui/views/controls/throbber.h"
19 Throbber::Throbber(int frame_time_ms,
29 Throbber::~Throbber() {
33 void Throbber::Start() {
40 this, &Throbber::Run);
47 void Throbber::Stop() {
57 void Throbber::SetFrames(const gfx::ImageSkia* frames) {
65 void Throbber::Run() {
71 gfx::Size Throbber::GetPreferredSize() {
75 void Throbber::OnPaint(gfx::Canvas* canvas) {
93 // Smoothed throbber ---------------------------------------------------------
96 // Delay after work starts before starting throbber, in milliseconds.
104 : Throbber(frame_time_ms, /* paint_while_stopped= */ false),
121 Throbber::Start();
134 Throbber::Stop();
137 // Checkmark throbber ---------------------------------------------------------
140 : Throbber(kFrameTimeMs, false),
156 // Let the throbber throb...
157 Throbber::OnPaint(canvas);