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

Unified Diff: components/omnibox/browser/shortcuts_provider_test_util.cc

Issue 2738003002: Add title to current page in zero suggest. (Closed)
Patch Set: Remove debugging info. 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: components/omnibox/browser/shortcuts_provider_test_util.cc
diff --git a/components/omnibox/browser/shortcuts_provider_test_util.cc b/components/omnibox/browser/shortcuts_provider_test_util.cc
index 71eedd8b2448d61659fc5eb7dec697675c7a41c1..79bb6c276db5a1e216bf00ebf8dfa228af6d1599 100644
--- a/components/omnibox/browser/shortcuts_provider_test_util.cc
+++ b/components/omnibox/browser/shortcuts_provider_test_util.cc
@@ -71,10 +71,10 @@ void RunShortcutsProviderTest(
std::string expected_top_result,
base::string16 top_result_inline_autocompletion) {
base::RunLoop().RunUntilIdle();
- AutocompleteInput input(text, base::string16::npos, std::string(), GURL(),
- metrics::OmniboxEventProto::INVALID_SPEC,
- prevent_inline_autocomplete, false, true, true, false,
- TestSchemeClassifier());
+ AutocompleteInput input(
+ text, base::string16::npos, std::string(), GURL(), base::string16(),
+ metrics::OmniboxEventProto::INVALID_SPEC, prevent_inline_autocomplete,
+ false, true, true, false, TestSchemeClassifier());
provider->Start(input, false);
EXPECT_TRUE(provider->done());

Powered by Google App Engine
This is Rietveld 408576698