summaryrefslogtreecommitdiffstats
path: root/chrome/browser/profile.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/profile.h')
-rw-r--r--chrome/browser/profile.h15
1 files changed, 7 insertions, 8 deletions
diff --git a/chrome/browser/profile.h b/chrome/browser/profile.h
index a4f680ad..751d2e2 100644
--- a/chrome/browser/profile.h
+++ b/chrome/browser/profile.h
@@ -30,6 +30,7 @@ namespace webkit_database {
class DatabaseTracker;
}
+class AutocompleteClassifier;
class Blacklist;
class BookmarkModel;
class BrowserThemeProvider;
@@ -55,7 +56,6 @@ class PinnedTabService;
class PrefService;
class ProfileSyncService;
class ProfileSyncFactory;
-class SearchVersusNavigateClassifier;
class SessionService;
class SpellCheckHost;
class SSLConfigServiceManager;
@@ -217,11 +217,10 @@ class Profile {
// doesn't already exist.
virtual HistoryService* GetHistoryServiceWithoutCreating() = 0;
- // Retrieves a pointer to the SearchVersusNavigateClassifier associated with
- // this profile. The SearchVersusNavigateClassifier is lazily created the
- // first time that this method is called.
- virtual SearchVersusNavigateClassifier*
- GetSearchVersusNavigateClassifier() = 0;
+ // Retrieves a pointer to the AutocompleteClassifier associated with this
+ // profile. The AutocompleteClassifier is lazily created the first time that
+ // this method is called.
+ virtual AutocompleteClassifier* GetAutocompleteClassifier() = 0;
// Returns the WebDataService for this profile. This is owned by
// the Profile. Callers that outlive the life of this profile need to be
@@ -473,7 +472,7 @@ class ProfileImpl : public Profile,
virtual FaviconService* GetFaviconService(ServiceAccessType sat);
virtual HistoryService* GetHistoryService(ServiceAccessType sat);
virtual HistoryService* GetHistoryServiceWithoutCreating();
- virtual SearchVersusNavigateClassifier* GetSearchVersusNavigateClassifier();
+ virtual AutocompleteClassifier* GetAutocompleteClassifier();
virtual WebDataService* GetWebDataService(ServiceAccessType sat);
virtual WebDataService* GetWebDataServiceWithoutCreating();
virtual PasswordStore* GetPasswordStore(ServiceAccessType sat);
@@ -598,7 +597,7 @@ class ProfileImpl : public Profile,
scoped_refptr<DownloadManager> download_manager_;
scoped_refptr<HistoryService> history_service_;
scoped_refptr<FaviconService> favicon_service_;
- scoped_ptr<SearchVersusNavigateClassifier> search_versus_navigate_classifier_;
+ scoped_ptr<AutocompleteClassifier> autocomplete_classifier_;
scoped_refptr<WebDataService> web_data_service_;
scoped_refptr<PasswordStore> password_store_;
scoped_refptr<SessionService> session_service_;