| 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 #include <memory> | 9 #include <memory> |
| 10 #include <utility> | 10 #include <utility> |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 class Rect; | 23 class Rect; |
| 24 } | 24 } |
| 25 | 25 |
| 26 namespace app_list { | 26 namespace app_list { |
| 27 | 27 |
| 28 class AppsGridView; | 28 class AppsGridView; |
| 29 class AppListPage; | 29 class AppListPage; |
| 30 class ApplicationDragAndDropHost; | 30 class ApplicationDragAndDropHost; |
| 31 class AppListFolderItem; | 31 class AppListFolderItem; |
| 32 class AppListMainView; | 32 class AppListMainView; |
| 33 class AppListViewDelegate; | |
| 34 class AppsContainerView; | 33 class AppsContainerView; |
| 35 class CustomLauncherPageView; | 34 class CustomLauncherPageView; |
| 36 class ContentsAnimator; | |
| 37 class PaginationModel; | 35 class PaginationModel; |
| 38 class SearchBoxView; | 36 class SearchBoxView; |
| 39 class SearchResultPageView; | 37 class SearchResultPageView; |
| 40 class StartPageView; | 38 class StartPageView; |
| 41 | 39 |
| 42 // A view to manage launcher pages within the Launcher (eg. start page, apps | 40 // A view to manage launcher pages within the Launcher (eg. start page, apps |
| 43 // grid view, search results). There can be any number of launcher pages, only | 41 // grid view, search results). There can be any number of launcher pages, only |
| 44 // one of which can be active at a given time. ContentsView provides the user | 42 // one of which can be active at a given time. ContentsView provides the user |
| 45 // interface for switching between launcher pages, and animates the transition | 43 // interface for switching between launcher pages, and animates the transition |
| 46 // between them. | 44 // between them. |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 | 199 |
| 202 // Manages the pagination for the launcher pages. | 200 // Manages the pagination for the launcher pages. |
| 203 PaginationModel pagination_model_; | 201 PaginationModel pagination_model_; |
| 204 | 202 |
| 205 DISALLOW_COPY_AND_ASSIGN(ContentsView); | 203 DISALLOW_COPY_AND_ASSIGN(ContentsView); |
| 206 }; | 204 }; |
| 207 | 205 |
| 208 } // namespace app_list | 206 } // namespace app_list |
| 209 | 207 |
| 210 #endif // UI_APP_LIST_VIEWS_CONTENTS_VIEW_H_ | 208 #endif // UI_APP_LIST_VIEWS_CONTENTS_VIEW_H_ |
| OLD | NEW |