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 UI_APP_LIST_VIEWS_APP_LIST_VIEW_H_ | 5 #ifndef UI_APP_LIST_VIEWS_APP_LIST_VIEW_H_ |
6 #define UI_APP_LIST_VIEWS_APP_LIST_VIEW_H_ | 6 #define UI_APP_LIST_VIEWS_APP_LIST_VIEW_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 | 9 |
10 #include "base/callback.h" | 10 #include "base/callback.h" |
11 #include "base/macros.h" | 11 #include "base/macros.h" |
12 #include "base/observer_list.h" | 12 #include "base/observer_list.h" |
13 #include "build/build_config.h" | 13 #include "build/build_config.h" |
14 #include "ui/app_list/app_list_export.h" | 14 #include "ui/app_list/app_list_export.h" |
15 #include "ui/app_list/speech_ui_model_observer.h" | 15 #include "ui/app_list/speech_ui_model_observer.h" |
16 #include "ui/views/bubble/bubble_dialog_delegate.h" | 16 #include "ui/views/bubble/bubble_dialog_delegate.h" |
17 #include "ui/views/widget/widget.h" | 17 #include "ui/views/widget/widget.h" |
18 | 18 |
19 namespace base { | 19 namespace base { |
20 class FilePath; | 20 class FilePath; |
21 } | 21 } |
22 | 22 |
23 namespace views { | |
24 class ImageView; | |
25 } | |
26 | |
27 namespace app_list { | 23 namespace app_list { |
28 class ApplicationDragAndDropHost; | 24 class ApplicationDragAndDropHost; |
29 class AppListMainView; | 25 class AppListMainView; |
30 class AppListModel; | 26 class AppListModel; |
31 class AppListViewDelegate; | 27 class AppListViewDelegate; |
32 class AppListViewObserver; | 28 class AppListViewObserver; |
33 class HideViewAnimationObserver; | 29 class HideViewAnimationObserver; |
34 class PaginationModel; | 30 class PaginationModel; |
35 class SearchBoxView; | 31 class SearchBoxView; |
36 class SpeechView; | 32 class SpeechView; |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
161 | 157 |
162 // For UMA and testing. If non-null, triggered when the app list is painted. | 158 // For UMA and testing. If non-null, triggered when the app list is painted. |
163 base::Closure next_paint_callback_; | 159 base::Closure next_paint_callback_; |
164 | 160 |
165 DISALLOW_COPY_AND_ASSIGN(AppListView); | 161 DISALLOW_COPY_AND_ASSIGN(AppListView); |
166 }; | 162 }; |
167 | 163 |
168 } // namespace app_list | 164 } // namespace app_list |
169 | 165 |
170 #endif // UI_APP_LIST_VIEWS_APP_LIST_VIEW_H_ | 166 #endif // UI_APP_LIST_VIEWS_APP_LIST_VIEW_H_ |
OLD | NEW |