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

Unified Diff: chrome/browser/engagement/site_engagement_service_unittest.cc

Issue 1841653003: Drop |languages| from {Format,Elide}Url* and IDNToUnicode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix typo in elide_url.cc Created 4 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/engagement/site_engagement_service_unittest.cc
diff --git a/chrome/browser/engagement/site_engagement_service_unittest.cc b/chrome/browser/engagement/site_engagement_service_unittest.cc
index 109f887e7909acf50612d0ffa22630d74f57f963..29cfa2e988ce1eef0952436381408a8d2bac44e3 100644
--- a/chrome/browser/engagement/site_engagement_service_unittest.cc
+++ b/chrome/browser/engagement/site_engagement_service_unittest.cc
@@ -92,8 +92,7 @@ base::Time GetReferenceTime() {
scoped_ptr<KeyedService> BuildTestHistoryService(
content::BrowserContext* context) {
scoped_ptr<history::HistoryService> service(new history::HistoryService());
- service->Init(std::string(),
- history::TestHistoryDatabaseParamsForPath(g_temp_history_dir));
+ service->Init(history::TestHistoryDatabaseParamsForPath(g_temp_history_dir));
return std::move(service);
}

Powered by Google App Engine
This is Rietveld 408576698