| 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 30 matching lines...) Expand all Loading... |
| 41 // Overridden from SearchResultContainerView: | 41 // Overridden from SearchResultContainerView: |
| 42 int DoUpdate() override; | 42 int DoUpdate() override; |
| 43 void UpdateSelectedIndex(int old_selected, int new_selected) override; | 43 void UpdateSelectedIndex(int old_selected, int new_selected) override; |
| 44 | 44 |
| 45 std::vector<SearchResultTileItemView*> tile_views_; | 45 std::vector<SearchResultTileItemView*> tile_views_; |
| 46 | 46 |
| 47 std::vector<views::Separator*> separator_views_; | 47 std::vector<views::Separator*> separator_views_; |
| 48 | 48 |
| 49 views::Textfield* search_box_; // Owned by the views hierarchy. | 49 views::Textfield* search_box_; // Owned by the views hierarchy. |
| 50 | 50 |
| 51 // Whether the fullscreen app list feature is enabled. | 51 // Whether the Play Store app search feature is enabled. |
| 52 const bool is_fullscreen_app_list_enabled_; | 52 const bool is_play_store_app_search_enabled_; |
| 53 | 53 |
| 54 DISALLOW_COPY_AND_ASSIGN(SearchResultTileItemListView); | 54 DISALLOW_COPY_AND_ASSIGN(SearchResultTileItemListView); |
| 55 }; | 55 }; |
| 56 | 56 |
| 57 } // namespace app_list | 57 } // namespace app_list |
| 58 | 58 |
| 59 #endif // UI_APP_LIST_VIEWS_SEARCH_RESULT_TILE_ITEM_LIST_VIEW_H_ | 59 #endif // UI_APP_LIST_VIEWS_SEARCH_RESULT_TILE_ITEM_LIST_VIEW_H_ |
| OLD | NEW |