| Index: chrome/browser/autocomplete/history_quick_provider.cc
|
| diff --git a/chrome/browser/autocomplete/history_quick_provider.cc b/chrome/browser/autocomplete/history_quick_provider.cc
|
| index 933278ec7eb22bcd4b63223a60a538354b6f3619..4f395ed0773f7a8962858934d3598c76130b7e02 100644
|
| --- a/chrome/browser/autocomplete/history_quick_provider.cc
|
| +++ b/chrome/browser/autocomplete/history_quick_provider.cc
|
| @@ -102,8 +102,6 @@ HistoryQuickProvider::HistoryQuickProvider(ACProviderListener* listener,
|
| inlining_option, NUM_OPTIONS);
|
| }
|
|
|
| -HistoryQuickProvider::~HistoryQuickProvider() {}
|
| -
|
| void HistoryQuickProvider::Start(const AutocompleteInput& input,
|
| bool minimal_changes) {
|
| matches_.clear();
|
| @@ -142,6 +140,8 @@ void HistoryQuickProvider::Start(const AutocompleteInput& input,
|
| // TODO(mrossetti): Implement this function. (Will happen in next CL.)
|
| void HistoryQuickProvider::DeleteMatch(const AutocompleteMatch& match) {}
|
|
|
| +HistoryQuickProvider::~HistoryQuickProvider() {}
|
| +
|
| void HistoryQuickProvider::DoAutocomplete() {
|
| // Get the matching URLs from the DB.
|
| string16 term_string = autocomplete_input_.text();
|
|
|