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

Unified Diff: chrome/browser/android/vr_shell/vr_omnibox.cc

Issue 2738003002: Add title to current page in zero suggest. (Closed)
Patch Set: Change the place where the title is added and some suggested renaming. Created 3 years, 8 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/android/vr_shell/vr_omnibox.cc
diff --git a/chrome/browser/android/vr_shell/vr_omnibox.cc b/chrome/browser/android/vr_shell/vr_omnibox.cc
index a76509d753e7811b5c207480a251159527560c33..c55eb05cb937d9ec3e2fd33724237ad7980e0750 100644
--- a/chrome/browser/android/vr_shell/vr_omnibox.cc
+++ b/chrome/browser/android/vr_shell/vr_omnibox.cc
@@ -44,9 +44,9 @@ void VrOmnibox::HandleInput(const base::DictionaryValue& dict) {
bool from_omnibox_focus = false;
autocomplete_controller_->Start(AutocompleteInput(
- text, cursor_pos, desired_tld, current_url, page_classification,
- prevent_inline_autocomplete, prefer_keyword, allow_exact_keyword_match,
- want_asynchronous_matches, from_omnibox_focus,
+ text, cursor_pos, desired_tld, current_url, base::string16(),
Mark P 2017/04/12 05:07:56 Following the conventions of this outline-like fil
gcomanici 2017/04/12 16:16:30 Done.
+ page_classification, prevent_inline_autocomplete, prefer_keyword,
+ allow_exact_keyword_match, want_asynchronous_matches, from_omnibox_focus,
ChromeAutocompleteSchemeClassifier(profile_)));
}

Powered by Google App Engine
This is Rietveld 408576698