diff options
author | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-11 18:34:40 +0000 |
---|---|---|
committer | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-11 18:34:40 +0000 |
commit | e8dbd674b68f0261498ae901c0805278a0c7bea1 (patch) | |
tree | 3e8cee2336e8a29ab1725bd78bff0ef37e7a9672 /chrome/browser/autocomplete_history_manager.h | |
parent | ea7452ec150026c4cef99a661a5afc32bec1749c (diff) | |
download | chromium_src-e8dbd674b68f0261498ae901c0805278a0c7bea1.zip chromium_src-e8dbd674b68f0261498ae901c0805278a0c7bea1.tar.gz chromium_src-e8dbd674b68f0261498ae901c0805278a0c7bea1.tar.bz2 |
Rename RenderViewHostDelegate::FormFieldHistory to Autocomplete.
BUG=33032
TEST=none
Review URL: http://codereview.chromium.org/815004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41294 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/autocomplete_history_manager.h')
-rw-r--r-- | chrome/browser/autocomplete_history_manager.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/chrome/browser/autocomplete_history_manager.h b/chrome/browser/autocomplete_history_manager.h index 1629f23..1d6966f 100644 --- a/chrome/browser/autocomplete_history_manager.h +++ b/chrome/browser/autocomplete_history_manager.h @@ -21,7 +21,7 @@ class TabContents; // Per-tab Autocomplete history manager. Handles receiving form data from the // renderer and the storing and retrieving of form data through WebDataService. class AutocompleteHistoryManager - : public RenderViewHostDelegate::FormFieldHistory, + : public RenderViewHostDelegate::Autocomplete, public WebDataServiceConsumer { public: explicit AutocompleteHistoryManager(TabContents* tab_contents); @@ -29,14 +29,14 @@ class AutocompleteHistoryManager Profile* profile(); - // RenderViewHostDelegate::FormFieldHistory implementation. + // RenderViewHostDelegate::Autocomplete implementation. virtual void FormFieldValuesSubmitted( const webkit_glue::FormFieldValues& form); - virtual bool GetFormFieldHistorySuggestions(int query_id, - const string16& name, - const string16& prefix); - virtual void RemoveFormFieldHistoryEntry(const string16& name, - const string16& value); + virtual bool GetAutocompleteSuggestions(int query_id, + const string16& name, + const string16& prefix); + virtual void RemoveAutocompleteEntry(const string16& name, + const string16& value); // WebDataServiceConsumer implementation. virtual void OnWebDataServiceRequestDone(WebDataService::Handle h, |