diff options
Diffstat (limited to 'chrome/browser/autocomplete/history_quick_provider.h')
-rw-r--r-- | chrome/browser/autocomplete/history_quick_provider.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/chrome/browser/autocomplete/history_quick_provider.h b/chrome/browser/autocomplete/history_quick_provider.h index b86ca8c..561336b 100644 --- a/chrome/browser/autocomplete/history_quick_provider.h +++ b/chrome/browser/autocomplete/history_quick_provider.h @@ -33,7 +33,10 @@ class HistoryQuickProvider : public HistoryProvider { // AutocompleteProvider. |minimal_changes| is ignored since there // is no asynch completion performed. - void Start(const AutocompleteInput& input, bool minimal_changes); + virtual void Start(const AutocompleteInput& input, + bool minimal_changes) OVERRIDE; + + virtual void DeleteMatch(const AutocompleteMatch& match) OVERRIDE; // Performs the autocomplete matching and scoring. void DoAutocomplete(); |