Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(318)

Side by Side Diff: ash/launcher/app_placeholder_view.h

Issue 10829268: chromeos: Sync animation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: wrap up + rebase Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef ASH_LAUNCHER_APP_PLACEHOLDER_VIEW_H_
6 #define ASH_LAUNCHER_APP_PLACEHOLDER_VIEW_H_
7
8 #include "base/timer.h"
9 #include "ui/views/view.h"
10
11 namespace ash {
12 namespace internal {
13
14 class AppPlaceholderView : public views::View {
sky 2012/08/14 20:02:34 Add a description.
xiyuan 2012/08/15 18:23:27 Done.
15 public:
16 AppPlaceholderView();
17 virtual ~AppPlaceholderView();
18
19 private:
20 void ScheduleAnimation();
21
22 // views::View overrides:
23 virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE;
24
25 base::OneShotTimer<AppPlaceholderView> animation_delay_timer_;
26
27 DISALLOW_COPY_AND_ASSIGN(AppPlaceholderView);
28 };
29
30 } // namespace internal
31 } // namesapce ash
32
33 #endif // ASH_LAUNCHER_APP_PLACEHOLDER_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698