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

  /external/chromium_org/ui/views/controls/
throbber.cc 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()
    [all...]
throbber.h 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 shor
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
browser_titlebar.h 58 // Called by the browser asking us to update the loading throbber.
59 // |tab_contents| is the tab that is associated with the window throbber.
69 // A helper class to keep track of which frame of the throbber animation
71 class Throbber {
73 Throbber() : current_frame_(0), current_waiting_frame_(0) {}
75 // Get the next frame in the animation. The image is owned by the throbber
230 // The throbber used when the window is in app mode or popup window mode.
231 Throbber throbber_;

Completed in 45 milliseconds