| Index: chrome/browser/history/history_backend_unittest.cc
|
| diff --git a/chrome/browser/history/history_backend_unittest.cc b/chrome/browser/history/history_backend_unittest.cc
|
| index df551481b51cc21cfd90ece937ee115d39de2126..8ebd57f14f623d8cff9d3d45c0dbca4324d7afd7 100644
|
| --- a/chrome/browser/history/history_backend_unittest.cc
|
| +++ b/chrome/browser/history/history_backend_unittest.cc
|
| @@ -27,10 +27,10 @@
|
| #include "chrome/browser/history/history_service_factory.h"
|
| #include "chrome/browser/history/in_memory_history_backend.h"
|
| #include "chrome/browser/history/visit_filter.h"
|
| -#include "chrome/common/chrome_constants.h"
|
| #include "chrome/common/chrome_paths.h"
|
| #include "chrome/common/importer/imported_favicon_usage.h"
|
| #include "chrome/test/base/testing_profile.h"
|
| +#include "components/history/core/browser/history_constants.h"
|
| #include "components/history/core/browser/in_memory_database.h"
|
| #include "components/history/core/browser/keyword_search_term.h"
|
| #include "components/history/core/test/history_client_fake_bookmarks.h"
|
| @@ -1544,8 +1544,7 @@ TEST_F(HistoryBackendTest, MigrationVisitSource) {
|
| base::FilePath new_history_path(test_dir());
|
| base::DeleteFile(new_history_path, true);
|
| base::CreateDirectory(new_history_path);
|
| - base::FilePath new_history_file =
|
| - new_history_path.Append(chrome::kHistoryFilename);
|
| + base::FilePath new_history_file = new_history_path.Append(kHistoryFilename);
|
| ASSERT_TRUE(base::CopyFile(old_history_path, new_history_file));
|
|
|
| backend_ = new HistoryBackend(
|
| @@ -2797,8 +2796,7 @@ TEST_F(HistoryBackendTest, MigrationVisitDuration) {
|
| base::FilePath new_history_path(test_dir());
|
| base::DeleteFile(new_history_path, true);
|
| base::CreateDirectory(new_history_path);
|
| - base::FilePath new_history_file =
|
| - new_history_path.Append(chrome::kHistoryFilename);
|
| + base::FilePath new_history_file = new_history_path.Append(kHistoryFilename);
|
| ASSERT_TRUE(base::CopyFile(old_history, new_history_file));
|
|
|
| backend_ = new HistoryBackend(
|
|
|