Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4033)

Unified Diff: chrome/browser/autocomplete/autocomplete_controller.h

Issue 399063002: Remove BaseSearchProvider::set_in_app_list (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix typo Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_;

Powered by Google App Engine
This is Rietveld 408576698