| Index: chrome/browser/autocomplete/search_provider.h
|
| diff --git a/chrome/browser/autocomplete/search_provider.h b/chrome/browser/autocomplete/search_provider.h
|
| index 171a20835b1dafdd73af64940dcecc2ca11fce6e..4f9e9fb300c5736c2930728d08298a039c59916a 100644
|
| --- a/chrome/browser/autocomplete/search_provider.h
|
| +++ b/chrome/browser/autocomplete/search_provider.h
|
| @@ -239,12 +239,11 @@ class SearchProvider : public AutocompleteProvider,
|
| void ApplyCalculatedNavigationRelevance(NavigationResults* list,
|
| bool is_keyword);
|
|
|
| - // Creates a URLFetcher requesting suggest results from the specified
|
| - // |suggestions_url|. The caller owns the returned URLFetcher.
|
| - net::URLFetcher* CreateSuggestFetcher(
|
| - int id,
|
| - const TemplateURLRef& suggestions_url,
|
| - const string16& text);
|
| + // Starts a new URLFetcher requesting suggest results from |template_url|;
|
| + // callers own the returned URLFetcher, which is NULL for invalid providers.
|
| + net::URLFetcher* CreateSuggestFetcher(int id,
|
| + const TemplateURL* template_url,
|
| + const string16& text);
|
|
|
| // Parses results from the suggest server and updates the appropriate suggest
|
| // and navigation result lists, depending on whether |is_keyword| is true.
|
|
|