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

Unified Diff: components/history/core/browser/history_backend_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: components/history/core/browser/history_backend_unittest.cc
diff --git a/components/history/core/browser/history_backend_unittest.cc b/components/history/core/browser/history_backend_unittest.cc
index fc48a9adc0c89ac8a146ddc04442dc8442619586..a99b360a27662dcb4f3bad37e1d076e06ea2b113 100644
--- a/components/history/core/browser/history_backend_unittest.cc
+++ b/components/history/core/browser/history_backend_unittest.cc
@@ -65,8 +65,6 @@ const int kTinyEdgeSize = 10;
const int kSmallEdgeSize = 16;
const int kLargeEdgeSize = 32;
-const char kAcceptLanguagesForTest[] = "en-US,en";
-
const gfx::Size kTinySize = gfx::Size(kTinyEdgeSize, kTinyEdgeSize);
const gfx::Size kSmallSize = gfx::Size(kSmallEdgeSize, kSmallEdgeSize);
const gfx::Size kLargeSize = gfx::Size(kLargeEdgeSize, kLargeEdgeSize);
@@ -257,8 +255,7 @@ class HistoryBackendTestBase : public testing::Test {
backend_ = new HistoryBackend(new HistoryBackendTestDelegate(this),
history_client_.CreateBackendClient(),
base::ThreadTaskRunnerHandle::Get());
- backend_->Init(std::string(), false,
- TestHistoryDatabaseParamsForPath(test_dir_));
+ backend_->Init(false, TestHistoryDatabaseParamsForPath(test_dir_));
}
void TearDown() override {
@@ -1707,8 +1704,7 @@ TEST_F(HistoryBackendTest, MigrationVisitSource) {
backend_ = new HistoryBackend(new HistoryBackendTestDelegate(this),
history_client_.CreateBackendClient(),
base::ThreadTaskRunnerHandle::Get());
- backend_->Init(std::string(), false,
- TestHistoryDatabaseParamsForPath(new_history_path));
+ backend_->Init(false, TestHistoryDatabaseParamsForPath(new_history_path));
backend_->Closing();
backend_ = NULL;
@@ -3266,8 +3262,7 @@ TEST_F(HistoryBackendTest, MigrationVisitDuration) {
backend_ = new HistoryBackend(new HistoryBackendTestDelegate(this),
history_client_.CreateBackendClient(),
base::ThreadTaskRunnerHandle::Get());
- backend_->Init(std::string(), false,
- TestHistoryDatabaseParamsForPath(new_history_path));
+ backend_->Init(false, TestHistoryDatabaseParamsForPath(new_history_path));
backend_->Closing();
backend_ = NULL;
@@ -3494,8 +3489,7 @@ TEST_F(HistoryBackendTest, RemoveNotification) {
new HistoryService(make_scoped_ptr(new HistoryClientFakeBookmarks),
scoped_ptr<history::VisitDelegate>()));
EXPECT_TRUE(
- service->Init(kAcceptLanguagesForTest,
- TestHistoryDatabaseParamsForPath(scoped_temp_dir.path())));
+ service->Init(TestHistoryDatabaseParamsForPath(scoped_temp_dir.path())));
service->AddPage(
url, base::Time::Now(), NULL, 1, GURL(), RedirectList(),
« no previous file with comments | « components/history/core/browser/history_backend.cc ('k') | components/history/core/browser/history_querying_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698