OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_MAIN_VIEW_H_ | 5 #ifndef UI_APP_LIST_VIEWS_APP_LIST_MAIN_VIEW_H_ |
6 #define UI_APP_LIST_VIEWS_APP_LIST_MAIN_VIEW_H_ | 6 #define UI_APP_LIST_VIEWS_APP_LIST_MAIN_VIEW_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
11 #include "base/memory/scoped_vector.h" | 11 #include "base/memory/scoped_vector.h" |
12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
13 #include "base/timer/timer.h" | 13 #include "base/timer/timer.h" |
14 #include "ui/app_list/app_list_export.h" | 14 #include "ui/app_list/app_list_export.h" |
15 #include "ui/app_list/app_list_model_observer.h" | 15 #include "ui/app_list/app_list_model_observer.h" |
16 #include "ui/app_list/views/apps_grid_view_delegate.h" | 16 #include "ui/app_list/views/apps_grid_view_delegate.h" |
17 #include "ui/app_list/views/search_box_view_delegate.h" | 17 #include "ui/app_list/views/search_box_view_delegate.h" |
18 #include "ui/app_list/views/search_result_list_view_delegate.h" | 18 #include "ui/app_list/views/search_result_list_view_delegate.h" |
19 #include "ui/views/view.h" | 19 #include "ui/views/view.h" |
20 | 20 |
21 namespace views { | |
22 class Widget; | |
23 } | |
24 | |
25 namespace app_list { | 21 namespace app_list { |
26 | 22 |
27 class AppListItem; | 23 class AppListItem; |
28 class AppListModel; | 24 class AppListModel; |
29 class AppListViewDelegate; | 25 class AppListViewDelegate; |
30 class ApplicationDragAndDropHost; | 26 class ApplicationDragAndDropHost; |
31 class ContentsView; | 27 class ContentsView; |
32 class PaginationModel; | 28 class PaginationModel; |
33 class SearchBoxView; | 29 class SearchBoxView; |
34 | 30 |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 ScopedVector<IconLoader> pending_icon_loaders_; | 117 ScopedVector<IconLoader> pending_icon_loaders_; |
122 | 118 |
123 base::WeakPtrFactory<AppListMainView> weak_ptr_factory_; | 119 base::WeakPtrFactory<AppListMainView> weak_ptr_factory_; |
124 | 120 |
125 DISALLOW_COPY_AND_ASSIGN(AppListMainView); | 121 DISALLOW_COPY_AND_ASSIGN(AppListMainView); |
126 }; | 122 }; |
127 | 123 |
128 } // namespace app_list | 124 } // namespace app_list |
129 | 125 |
130 #endif // UI_APP_LIST_VIEWS_APP_LIST_MAIN_VIEW_H_ | 126 #endif // UI_APP_LIST_VIEWS_APP_LIST_MAIN_VIEW_H_ |
OLD | NEW |