| Index: components/omnibox/search_provider.h
|
| diff --git a/components/omnibox/search_provider.h b/components/omnibox/search_provider.h
|
| index 6c998e162b1cd71ca75d577232aa41ebb3a54d57..269914fb94d6eb9f3919aac7114d779478f712d9 100644
|
| --- a/components/omnibox/search_provider.h
|
| +++ b/components/omnibox/search_provider.h
|
| @@ -250,9 +250,10 @@ class SearchProvider : public BaseSearchProvider,
|
|
|
| // 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 AutocompleteInput& input);
|
| + scoped_ptr<net::URLFetcher> CreateSuggestFetcher(
|
| + int id,
|
| + const TemplateURL* template_url,
|
| + const AutocompleteInput& input);
|
|
|
| // Converts the parsed results to a set of AutocompleteMatches, |matches_|.
|
| void ConvertResultsToAutocompleteMatches();
|
|
|