summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/app_list/search_builder.h
diff options
context:
space:
mode:
authorderat@chromium.org <derat@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-09-11 13:17:00 +0000
committerderat@chromium.org <derat@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-09-11 13:17:00 +0000
commit35f1f4f0cc2c1a6fbcb5816f4fceb3eb92d04e3c (patch)
tree53f51a2ebbed3718ac214cba3209b7b0630a4f3f /chrome/browser/ui/app_list/search_builder.h
parentfe4d0c57e4842a913e386a89c67143e0321ca6fe (diff)
downloadchromium_src-35f1f4f0cc2c1a6fbcb5816f4fceb3eb92d04e3c.zip
chromium_src-35f1f4f0cc2c1a6fbcb5816f4fceb3eb92d04e3c.tar.gz
chromium_src-35f1f4f0cc2c1a6fbcb5816f4fceb3eb92d04e3c.tar.bz2
autocomplete: Add AutocompleteProvider::Type enum.
This drops the AutocompleteProvider class's name field in favor of an enum describing its type. It also updates AutocompleteController to take a bitmap describing the types of providers that it should create, making it easier to use AutocompleteController in places besides the omnibox. BUG=141877,147724 TEST=none TBR=sky@chromium.org Review URL: https://chromiumcodereview.appspot.com/10909130 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156004 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/app_list/search_builder.h')
-rw-r--r--chrome/browser/ui/app_list/search_builder.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/chrome/browser/ui/app_list/search_builder.h b/chrome/browser/ui/app_list/search_builder.h
index f5f2d26..314cc28 100644
--- a/chrome/browser/ui/app_list/search_builder.h
+++ b/chrome/browser/ui/app_list/search_builder.h
@@ -19,7 +19,6 @@ class SearchResult;
class AppListController;
class AutocompleteController;
class AutocompleteResult;
-class ExtensionAppProvider;
class Profile;
// SearchBuilder creates app list search results via AutoCompleteController.
@@ -63,10 +62,6 @@ class SearchBuilder : public AutocompleteControllerDelegate {
// The controller of the app list. Owned by the app list delegate.
AppListController* list_controller_;
- // ExtensionAppProvider used for apps only mode. If apps only mode becomes the
- // only mode, remove the AutocompleteController above. Otherwise, remove this.
- scoped_refptr<ExtensionAppProvider> apps_provider_;
-
DISALLOW_COPY_AND_ASSIGN(SearchBuilder);
};