| 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_CONTENTS_VIEW_H_ | 5 #ifndef UI_APP_LIST_VIEWS_CONTENTS_VIEW_H_ |
| 6 #define UI_APP_LIST_VIEWS_CONTENTS_VIEW_H_ | 6 #define UI_APP_LIST_VIEWS_CONTENTS_VIEW_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 13 #include "ui/app_list/app_list_export.h" | 13 #include "ui/app_list/app_list_export.h" |
| 14 #include "ui/app_list/pagination_model.h" | 14 #include "ui/app_list/pagination_model.h" |
| 15 #include "ui/app_list/pagination_model_observer.h" | 15 #include "ui/app_list/pagination_model_observer.h" |
| 16 #include "ui/views/view.h" | 16 #include "ui/views/view.h" |
| 17 #include "ui/views/view_model.h" |
| 17 | 18 |
| 18 namespace gfx { | 19 namespace gfx { |
| 19 class Rect; | 20 class Rect; |
| 20 } | 21 } |
| 21 | 22 |
| 22 namespace views { | |
| 23 class ViewModel; | |
| 24 } | |
| 25 | |
| 26 namespace app_list { | 23 namespace app_list { |
| 27 | 24 |
| 28 class AppsGridView; | 25 class AppsGridView; |
| 29 class ApplicationDragAndDropHost; | 26 class ApplicationDragAndDropHost; |
| 30 class AppListFolderItem; | 27 class AppListFolderItem; |
| 31 class AppListMainView; | 28 class AppListMainView; |
| 32 class AppListModel; | 29 class AppListModel; |
| 33 class AppListViewDelegate; | 30 class AppListViewDelegate; |
| 34 class AppsContainerView; | 31 class AppsContainerView; |
| 35 class ContentsSwitcherView; | 32 class ContentsSwitcherView; |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 | 166 |
| 170 // Manages the pagination for the launcher pages. | 167 // Manages the pagination for the launcher pages. |
| 171 PaginationModel pagination_model_; | 168 PaginationModel pagination_model_; |
| 172 | 169 |
| 173 DISALLOW_COPY_AND_ASSIGN(ContentsView); | 170 DISALLOW_COPY_AND_ASSIGN(ContentsView); |
| 174 }; | 171 }; |
| 175 | 172 |
| 176 } // namespace app_list | 173 } // namespace app_list |
| 177 | 174 |
| 178 #endif // UI_APP_LIST_VIEWS_CONTENTS_VIEW_H_ | 175 #endif // UI_APP_LIST_VIEWS_CONTENTS_VIEW_H_ |
| OLD | NEW |