| Index: chrome/browser/autocomplete/search_provider.h
|
| diff --git a/chrome/browser/autocomplete/search_provider.h b/chrome/browser/autocomplete/search_provider.h
|
| index bf18bd0ed967becdabf7682bd8048c042ab6b870..e0a747a882b84b305c9b16afb2147b703766d9eb 100644
|
| --- a/chrome/browser/autocomplete/search_provider.h
|
| +++ b/chrome/browser/autocomplete/search_provider.h
|
| @@ -64,8 +64,9 @@ class SearchProvider : public AutocompleteProvider,
|
|
|
| // AutocompleteProvider
|
| virtual void Start(const AutocompleteInput& input,
|
| - bool minimal_changes);
|
| - virtual void Stop();
|
| + bool minimal_changes) OVERRIDE;
|
| + virtual void Stop() OVERRIDE;
|
| + virtual void PostProcessResult(AutocompleteResult* result) OVERRIDE;
|
|
|
| // URLFetcher::Delegate
|
| virtual void OnURLFetchComplete(const URLFetcher* source,
|
| @@ -270,9 +271,6 @@ class SearchProvider : public AutocompleteProvider,
|
| // Updates the value of |done_| from the internal state.
|
| void UpdateDone();
|
|
|
| - // Updates the description/description_class of the first search match.
|
| - void UpdateFirstSearchMatchDescription();
|
| -
|
| // Should we query for suggest results immediately? This is normally false,
|
| // but may be set to true during testing.
|
| static bool query_suggest_immediately_;
|
|
|