OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef ASH_APP_LIST_APP_LIST_H_ | 5 #ifndef ASH_APP_LIST_APP_LIST_H_ |
6 #define ASH_APP_LIST_APP_LIST_H_ | 6 #define ASH_APP_LIST_APP_LIST_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
11 #include "base/timer.h" | 11 #include "base/timer.h" |
12 #include "ui/aura/event_filter.h" | 12 #include "ui/aura/event_filter.h" |
13 #include "ui/aura/root_window_observer.h" | 13 #include "ui/aura/root_window_observer.h" |
14 #include "ui/gfx/compositor/layer_animation_observer.h" | 14 #include "ui/compositor/layer_animation_observer.h" |
15 #include "ui/views/widget/widget.h" | 15 #include "ui/views/widget/widget.h" |
16 | 16 |
17 namespace ash { | 17 namespace ash { |
18 | 18 |
19 class AppListView; | 19 class AppListView; |
20 | 20 |
21 namespace internal { | 21 namespace internal { |
22 | 22 |
23 // AppList is a controller that manages app list UI for shell. To show the UI, | 23 // AppList is a controller that manages app list UI for shell. To show the UI, |
24 // it requests app list widget from ShellDelegate and shows it when ready. | 24 // it requests app list widget from ShellDelegate and shows it when ready. |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 // animation is scheduled in ScheduleAnimation. | 101 // animation is scheduled in ScheduleAnimation. |
102 base::OneShotTimer<AppList> second_animation_timer_; | 102 base::OneShotTimer<AppList> second_animation_timer_; |
103 | 103 |
104 DISALLOW_COPY_AND_ASSIGN(AppList); | 104 DISALLOW_COPY_AND_ASSIGN(AppList); |
105 }; | 105 }; |
106 | 106 |
107 } // namespace internal | 107 } // namespace internal |
108 } // namespace ash | 108 } // namespace ash |
109 | 109 |
110 #endif // ASH_APP_LIST_APP_LIST_H_ | 110 #endif // ASH_APP_LIST_APP_LIST_H_ |
OLD | NEW |