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

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: rebased, most Android targets locally built successfully Created 4 years, 9 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();
}

Powered by Google App Engine
This is Rietveld 408576698