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

Unified Diff: components/omnibox/browser/clipboard_url_provider_unittest.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/clipboard_url_provider_unittest.cc
diff --git a/components/omnibox/browser/clipboard_url_provider_unittest.cc b/components/omnibox/browser/clipboard_url_provider_unittest.cc
index f0f8dd2b744103a9dcf7a870ea10c852a6d39fb1..962a4343bf28c9653b48ea25efd26bb4ed06d499 100644
--- a/components/omnibox/browser/clipboard_url_provider_unittest.cc
+++ b/components/omnibox/browser/clipboard_url_provider_unittest.cc
@@ -41,10 +41,11 @@ class ClipboardURLProviderTest : public testing::Test {
}
AutocompleteInput CreateAutocompleteInput(bool from_omnibox_focus) {
- return AutocompleteInput(
- base::string16(), base::string16::npos, std::string(),
- GURL(kCurrentURL), metrics::OmniboxEventProto::INVALID_SPEC, false,
- false, false, false, from_omnibox_focus, classifier_);
+ return AutocompleteInput(base::string16(), base::string16::npos,
+ std::string(), GURL(kCurrentURL), base::string16(),
+ metrics::OmniboxEventProto::INVALID_SPEC, false,
+ false, false, false, from_omnibox_focus,
+ classifier_);
}
protected:

Powered by Google App Engine
This is Rietveld 408576698