| Index: chrome/browser/ui/app_list/search_builder.h
|
| diff --git a/chrome/browser/ui/app_list/search_builder.h b/chrome/browser/ui/app_list/search_builder.h
|
| index 314cc286938a4aea24039bf43258aa58517dc3bc..229c8800d42cdc55a2e208575946cded21a95ee0 100644
|
| --- a/chrome/browser/ui/app_list/search_builder.h
|
| +++ b/chrome/browser/ui/app_list/search_builder.h
|
| @@ -16,7 +16,7 @@ class SearchBoxModel;
|
| class SearchResult;
|
| }
|
|
|
| -class AppListController;
|
| +class AppListControllerDelegate;
|
| class AutocompleteController;
|
| class AutocompleteResult;
|
| class Profile;
|
| @@ -27,7 +27,7 @@ class SearchBuilder : public AutocompleteControllerDelegate {
|
| SearchBuilder(Profile* profile,
|
| app_list::SearchBoxModel* search_box,
|
| app_list::AppListModel::SearchResults* results,
|
| - AppListController* list_controller);
|
| + AppListControllerDelegate* list_controller);
|
| virtual ~SearchBuilder();
|
|
|
| void StartSearch();
|
| @@ -60,7 +60,7 @@ class SearchBuilder : public AutocompleteControllerDelegate {
|
| scoped_ptr<AutocompleteController> controller_;
|
|
|
| // The controller of the app list. Owned by the app list delegate.
|
| - AppListController* list_controller_;
|
| + AppListControllerDelegate* list_controller_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(SearchBuilder);
|
| };
|
|
|