| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_START_PAGE_VIEW_H_ | 5 #ifndef UI_APP_LIST_VIEWS_START_PAGE_VIEW_H_ |
| 6 #define UI_APP_LIST_VIEWS_START_PAGE_VIEW_H_ | 6 #define UI_APP_LIST_VIEWS_START_PAGE_VIEW_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "ui/app_list/app_list_export.h" | 13 #include "ui/app_list/app_list_export.h" |
| 14 #include "ui/app_list/views/app_list_page.h" | 14 #include "ui/app_list/views/app_list_page.h" |
| 15 | 15 |
| 16 namespace app_list { | 16 namespace app_list { |
| 17 | 17 |
| 18 class AppListMainView; | 18 class AppListMainView; |
| 19 class AppListView; | 19 class AppListView; |
| 20 class AppListViewDelegate; | 20 class AppListViewDelegate; |
| 21 class CustomLauncherPageBackgroundView; | 21 class CustomLauncherPageBackgroundView; |
| 22 class ExpandArrowView; |
| 22 class IndicatorChipView; | 23 class IndicatorChipView; |
| 23 class SearchResultTileItemView; | 24 class SearchResultTileItemView; |
| 24 class SuggestionsContainerView; | 25 class SuggestionsContainerView; |
| 25 class TileItemView; | 26 class TileItemView; |
| 26 | 27 |
| 27 // The start page for the app list. | 28 // The start page for the app list. |
| 28 class APP_LIST_EXPORT StartPageView : public AppListPage { | 29 class APP_LIST_EXPORT StartPageView : public AppListPage { |
| 29 public: | 30 public: |
| 30 StartPageView(AppListMainView* app_list_main_view, | 31 StartPageView(AppListMainView* app_list_main_view, |
| 31 AppListViewDelegate* view_delegate, | 32 AppListViewDelegate* view_delegate, |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 // in a box layout. The search box view itself is a child of the AppListView | 73 // in a box layout. The search box view itself is a child of the AppListView |
| 73 // (because it is visible on many different pages). | 74 // (because it is visible on many different pages). |
| 74 views::View* search_box_spacer_view_; // Owned by views hierarchy. | 75 views::View* search_box_spacer_view_; // Owned by views hierarchy. |
| 75 | 76 |
| 76 views::View* instant_container_; // Owned by views hierarchy. | 77 views::View* instant_container_; // Owned by views hierarchy. |
| 77 CustomLauncherPageBackgroundView* | 78 CustomLauncherPageBackgroundView* |
| 78 custom_launcher_page_background_; // Owned by views hierarchy. | 79 custom_launcher_page_background_; // Owned by views hierarchy. |
| 79 IndicatorChipView* indicator_ = nullptr; // Owned by views hierarchy. | 80 IndicatorChipView* indicator_ = nullptr; // Owned by views hierarchy. |
| 80 SuggestionsContainerView* | 81 SuggestionsContainerView* |
| 81 suggestions_container_; // Owned by views hierarchy. | 82 suggestions_container_; // Owned by views hierarchy. |
| 83 ExpandArrowView* expand_arrow_view_ = nullptr; // Owned by views hierarchy. |
| 82 | 84 |
| 83 const bool is_fullscreen_app_list_enabled_; | 85 const bool is_fullscreen_app_list_enabled_; |
| 84 | 86 |
| 85 DISALLOW_COPY_AND_ASSIGN(StartPageView); | 87 DISALLOW_COPY_AND_ASSIGN(StartPageView); |
| 86 }; | 88 }; |
| 87 | 89 |
| 88 } // namespace app_list | 90 } // namespace app_list |
| 89 | 91 |
| 90 #endif // UI_APP_LIST_VIEWS_START_PAGE_VIEW_H_ | 92 #endif // UI_APP_LIST_VIEWS_START_PAGE_VIEW_H_ |
| OLD | NEW |