summaryrefslogtreecommitdiffstats
path: root/chrome/browser/autocomplete_history_manager.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/autocomplete_history_manager.h')
-rw-r--r--chrome/browser/autocomplete_history_manager.h14
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,