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

  /external/chromium_org/ui/app_list/views/
pulsing_block_view.h 19 // PulsingBlockView shows a pulsing white block via layer animation.
20 class PulsingBlockView : public views::View {
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);
pulsing_block_view.cc 77 PulsingBlockView::PulsingBlockView(const gfx::Size& size, bool start_delay) {
87 this, &PulsingBlockView::OnStartDelayTimer);
93 PulsingBlockView::~PulsingBlockView() {
96 void PulsingBlockView::OnStartDelayTimer() {
100 void PulsingBlockView::OnPaint(gfx::Canvas* canvas) {

Completed in 25 milliseconds