OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PulsingBlockView
(Results
1 - 3
of
3
) 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
73
PulsingBlockView
::
PulsingBlockView
(const gfx::Size& size, bool start_delay) {
82
this, &
PulsingBlockView
::OnStartDelayTimer);
85
PulsingBlockView
::~
PulsingBlockView
() {
88
void
PulsingBlockView
::OnStartDelayTimer() {
92
void
PulsingBlockView
::OnPaint(gfx::Canvas* canvas) {
apps_grid_view.cc
[
all
...]
Completed in 1439 milliseconds