Searched defs:PulsingBlockView (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/ui/app_list/views/
H A Dpulsing_block_view.h19 // PulsingBlockView shows a pulsing white block via layer animation.
20 class PulsingBlockView : public views::View { class in namespace:app_list
22 // Constructs a PulsingBlockView of |size|. If |start_delay| is true,
24 PulsingBlockView(const gfx::Size& size, bool start_delay);
25 virtual ~PulsingBlockView();
33 base::OneShotTimer<PulsingBlockView> start_delay_timer_;
35 DISALLOW_COPY_AND_ASSIGN(PulsingBlockView);
H A Dpulsing_block_view.cc77 PulsingBlockView::PulsingBlockView(const gfx::Size& size, bool start_delay) { function in class:app_list::PulsingBlockView
87 this, &PulsingBlockView::OnStartDelayTimer);
93 PulsingBlockView::~PulsingBlockView() {
96 void PulsingBlockView::OnStartDelayTimer() {
100 void PulsingBlockView::OnPaint(gfx::Canvas* canvas) {

Completed in 89 milliseconds