HomeSort by relevance Sort by last modified time
    Searched refs:Throbber (Results 1 - 19 of 19) 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/chromeos/login/
update_view.h 14 class Throbber;
50 // Whether curtain window with throbber and label in the center should
77 views::Throbber* throbber_;
helper.h 30 class Throbber;
38 // View that provides interface for start/stop throbber above the view.
44 // Creates throbber above the view in the right side with the default
45 // margin. Also places throbber in the middle of the vertical host size.
46 // Override |CalculateThrobberBounds| method to change the throbber placing.
49 // Stops the throbber.
53 // Calculates the bounds of the throbber relatively to the host view.
55 virtual gfx::Rect CalculateThrobberBounds(views::Throbber* throbber);
62 // View to show the throbber above (default is |this|)
    [all...]
network_selection_view.h 27 class Throbber;
59 // Returns true if only throbber is visible, the view is in waiting status.
119 views::Throbber* throbber_;
web_page_view.h 22 class Throbber;
111 // Stops throbber and shows page content (starts renderer_timer_ for that).
124 // Called by start_timer_. Shows throbber and waiting label.
127 // Throbber shown during page load.
128 views::Throbber* throbber_;
user_view.h 20 class Throbber;
helper.cc 22 #include "views/controls/throbber.h"
32 // Time in ms per throbber frame.
35 // Time in ms before smoothed throbber is shown.
91 LOG(WARNING) << "Failed to start the throbber: no Widget";
99 LOG(WARNING) << "Failed to start the throbber: no GtkWindow";
103 views::SmoothedThrobber* throbber = CreateDefaultSmoothedThrobber(); local
104 throbber->set_stop_delay_ms(0);
105 gfx::Rect throbber_bounds = CalculateThrobberBounds(throbber);
114 throbber_widget_->SetContentsView(throbber);
121 throbber->Start()
140 views::SmoothedThrobber* throbber = local
149 views::Throbber* throbber = new views::Throbber(kThrobberFrameMs, false); local
    [all...]
new_user_view.h 108 virtual gfx::Rect CalculateThrobberBounds(views::Throbber* throbber);
take_photo_view.cc 20 #include "views/controls/throbber.h"
42 // Image view that can show center throbber above itself or a message at its
135 // Throbber centered within the view.
136 views::Throbber* throbber_;
eula_view.cc 43 #include "views/controls/throbber.h"
159 views::Throbber* throbber_;
201 // Resize of the throbber and label is not allowed, since we want they to be
210 // throbber and label will be placed in the center.
new_user_view.cc 38 #include "views/controls/throbber.h"
503 gfx::Rect NewUserView::CalculateThrobberBounds(views::Throbber* throbber) {
507 gfx::Size throbber_size = throbber->GetPreferredSize();
  /external/chromium_org/ui/views/examples/
throbber_example.cc 7 #include "ui/views/controls/throbber.h"
16 // Time in ms per throbber frame.
22 throbber_ = new Throbber(kThrobberFrameMs, false);
42 Throbber* throbber_;
49 ThrobberExample::ThrobberExample() : ExampleBase("Throbber") {
  /external/chromium/chrome/browser/chromeos/frame/
bubble_window.h 17 class Throbber;
29 STYLE_THROBBER = 1 << 1, // Show throbber for slow rendering.
bubble_frame_view.h 76 // Throbber is optional. Employed by STYLE_THROBBER.
77 views::Throbber* throbber_;
  /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_;
browser_titlebar.cc 552 // left of the custom frame, that will get updated when the throbber is
    [all...]
  /external/chromium/chrome/browser/ui/views/
about_chrome_view.h 24 class Throbber;
118 scoped_ptr<views::Throbber> throbber_;
about_chrome_view.cc 39 #include "views/controls/throbber.h"
176 throbber_.reset(new views::Throbber(50, true));
420 // the throbber. We specify width to the end of the dialog because it contains
    [all...]

Completed in 421 milliseconds