Chromium Code Reviews| Index: ui/app_list/app_list_model.h |
| diff --git a/ui/app_list/app_list_model.h b/ui/app_list/app_list_model.h |
| index 68ac9ed6cdec956162621e63be8a330ff6c19ba4..79cefe6ae518b087427f86af05110731b98106b4 100644 |
| --- a/ui/app_list/app_list_model.h |
| +++ b/ui/app_list/app_list_model.h |
| @@ -154,6 +154,7 @@ class APP_LIST_EXPORT AppListModel : public AppListItemListObserver { |
| SearchBoxModel* search_box() { return search_box_.get(); } |
| SearchResults* results() { return results_.get(); } |
| + SearchResult* auto_launch_result() { return auto_launch_result_.get(); } |
| Status status() const { return status_; } |
| bool folders_enabled() const { return folders_enabled_; } |
| @@ -193,6 +194,7 @@ class APP_LIST_EXPORT AppListModel : public AppListItemListObserver { |
| scoped_ptr<SearchBoxModel> search_box_; |
| scoped_ptr<SearchResults> results_; |
| + scoped_ptr<SearchResult> auto_launch_result_; |
|
calamity
2014/12/16 01:50:03
Unused?
Matt Giuca
2014/12/16 02:04:09
Done.
|
| Status status_; |
| State state_; |