| Index: chrome/browser/autocomplete/autocomplete_controller.h
|
| diff --git a/chrome/browser/autocomplete/autocomplete_controller.h b/chrome/browser/autocomplete/autocomplete_controller.h
|
| index 9fedb1d63bf141d6f50ba9b15a9816e43071a4f8..9fbd50b5bfab31a741acf95b69e8baaf008524fa 100644
|
| --- a/chrome/browser/autocomplete/autocomplete_controller.h
|
| +++ b/chrome/browser/autocomplete/autocomplete_controller.h
|
| @@ -114,8 +114,15 @@ class AutocompleteController : public AutocompleteProviderListener {
|
| // parameters otherwise not available at initial construction time. This
|
| // method should be called from OmniboxEditModel::OpenMatch() before the user
|
| // navigates to the selected match.
|
| - void UpdateMatchDestinationURL(base::TimeDelta query_formulation_time,
|
| - AutocompleteMatch* match) const;
|
| + void UpdateMatchDestinationURLWithQueryFormulationTime(
|
| + base::TimeDelta query_formulation_time,
|
| + AutocompleteMatch* match) const;
|
| +
|
| + // Constructs the final destination URL for a given match using additional
|
| + // parameters otherwise not available at initial construction time.
|
| + void UpdateMatchDestinationURL(
|
| + const TemplateURLRef::SearchTermsArgs& search_terms_args,
|
| + AutocompleteMatch* match) const;
|
|
|
| HistoryURLProvider* history_url_provider() const {
|
| return history_url_provider_;
|
|
|