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

Unified Diff: components/history/core/test/history_backend_db_base_test.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: components/history/core/test/history_backend_db_base_test.cc
diff --git a/components/history/core/test/history_backend_db_base_test.cc b/components/history/core/test/history_backend_db_base_test.cc
index 5d77e4f19b6195c533f38a12c1c6a4663fa211fe..604e38cf3e523e5367ad5448e5e8833a38f0c5bc 100644
--- a/components/history/core/test/history_backend_db_base_test.cc
+++ b/components/history/core/test/history_backend_db_base_test.cc
@@ -85,7 +85,7 @@ void HistoryBackendDBBaseTest::TearDown() {
void HistoryBackendDBBaseTest::CreateBackendAndDatabase() {
backend_ = new HistoryBackend(new BackendDelegate(this), nullptr,
base::ThreadTaskRunnerHandle::Get());
- backend_->Init(std::string(), false,
+ backend_->Init(false,
TestHistoryDatabaseParamsForPath(history_dir_));
db_ = backend_->db_.get();
DCHECK(in_mem_backend_) << "Mem backend should have been set by "
@@ -95,7 +95,7 @@ void HistoryBackendDBBaseTest::CreateBackendAndDatabase() {
void HistoryBackendDBBaseTest::CreateBackendAndDatabaseAllowFail() {
backend_ = new HistoryBackend(new BackendDelegate(this), nullptr,
base::ThreadTaskRunnerHandle::Get());
- backend_->Init(std::string(), false,
+ backend_->Init(false,
TestHistoryDatabaseParamsForPath(history_dir_));
db_ = backend_->db_.get();
}
« no previous file with comments | « components/history/core/browser/url_database.cc ('k') | components/history/core/test/history_service_test_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698