Throbber           19 ui/views/controls/throbber.cc Throbber::Throbber(int frame_time_ms,
Throbber           29 ui/views/controls/throbber.cc Throbber::~Throbber() {
Throbber           33 ui/views/controls/throbber.cc void Throbber::Start() {
Throbber           40 ui/views/controls/throbber.cc                this, &Throbber::Run);
Throbber           47 ui/views/controls/throbber.cc void Throbber::Stop() {
Throbber           57 ui/views/controls/throbber.cc void Throbber::SetFrames(const gfx::ImageSkia* frames) {
Throbber           65 ui/views/controls/throbber.cc void Throbber::Run() {
Throbber           71 ui/views/controls/throbber.cc gfx::Size Throbber::GetPreferredSize() {
Throbber           75 ui/views/controls/throbber.cc void Throbber::OnPaint(gfx::Canvas* canvas) {
Throbber          104 ui/views/controls/throbber.cc     : Throbber(frame_time_ms, /* paint_while_stopped= */ false),
Throbber          121 ui/views/controls/throbber.cc   Throbber::Start();
Throbber          134 ui/views/controls/throbber.cc   Throbber::Stop();
Throbber          140 ui/views/controls/throbber.cc     : Throbber(kFrameTimeMs, false),
Throbber          157 ui/views/controls/throbber.cc     Throbber::OnPaint(canvas);
Throbber           22 ui/views/controls/throbber.h class VIEWS_EXPORT Throbber : public View {
Throbber           28 ui/views/controls/throbber.h   Throbber(int frame_time_ms, bool paint_while_stopped);
Throbber           29 ui/views/controls/throbber.h   Throbber(int frame_time_ms, bool paint_while_stopped, gfx::ImageSkia* frames);
Throbber           30 ui/views/controls/throbber.h   virtual ~Throbber();
Throbber           55 ui/views/controls/throbber.h   base::RepeatingTimer<Throbber> timer_;  // Used to schedule Run calls.
Throbber           57 ui/views/controls/throbber.h   DISALLOW_COPY_AND_ASSIGN(Throbber);
Throbber           64 ui/views/controls/throbber.h class VIEWS_EXPORT SmoothedThrobber : public Throbber {
Throbber          102 ui/views/controls/throbber.h class VIEWS_EXPORT CheckmarkThrobber : public Throbber {
Throbber           22 ui/views/examples/throbber_example.cc     throbber_ = new Throbber(kThrobberFrameMs, false);
Throbber           42 ui/views/examples/throbber_example.cc   Throbber* throbber_;