| 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_SEARCH_RESULT_TILE_ITEM_LIST_VIEW_H_ | 5 #ifndef UI_APP_LIST_VIEWS_SEARCH_RESULT_TILE_ITEM_LIST_VIEW_H_ |
| 6 #define UI_APP_LIST_VIEWS_SEARCH_RESULT_TILE_ITEM_LIST_VIEW_H_ | 6 #define UI_APP_LIST_VIEWS_SEARCH_RESULT_TILE_ITEM_LIST_VIEW_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 | 38 |
| 39 private: | 39 private: |
| 40 // Overridden from SearchResultContainerView: | 40 // Overridden from SearchResultContainerView: |
| 41 int DoUpdate() override; | 41 int DoUpdate() override; |
| 42 void UpdateSelectedIndex(int old_selected, int new_selected) override; | 42 void UpdateSelectedIndex(int old_selected, int new_selected) override; |
| 43 | 43 |
| 44 std::vector<SearchResultTileItemView*> tile_views_; | 44 std::vector<SearchResultTileItemView*> tile_views_; |
| 45 | 45 |
| 46 views::Textfield* search_box_; // Owned by the views hierarchy. | 46 views::Textfield* search_box_; // Owned by the views hierarchy. |
| 47 | 47 |
| 48 // Whether the fullscreen app list feature is enabled. |
| 49 const bool is_fullscreen_app_list_enabled_; |
| 50 |
| 48 DISALLOW_COPY_AND_ASSIGN(SearchResultTileItemListView); | 51 DISALLOW_COPY_AND_ASSIGN(SearchResultTileItemListView); |
| 49 }; | 52 }; |
| 50 | 53 |
| 51 } // namespace app_list | 54 } // namespace app_list |
| 52 | 55 |
| 53 #endif // UI_APP_LIST_VIEWS_SEARCH_RESULT_TILE_ITEM_LIST_VIEW_H_ | 56 #endif // UI_APP_LIST_VIEWS_SEARCH_RESULT_TILE_ITEM_LIST_VIEW_H_ |
| OLD | NEW |