Index: chrome/browser/safe_browsing/incident_reporting/last_download_finder_unittest.cc |
diff --git a/chrome/browser/safe_browsing/incident_reporting/last_download_finder_unittest.cc b/chrome/browser/safe_browsing/incident_reporting/last_download_finder_unittest.cc |
index 9d257b26d0def84431b679288b38dfc975873d34..e3d73fa82ffe27cd796ead0b1011ac4867e5fe9e 100644 |
--- a/chrome/browser/safe_browsing/incident_reporting/last_download_finder_unittest.cc |
+++ b/chrome/browser/safe_browsing/incident_reporting/last_download_finder_unittest.cc |
@@ -21,13 +21,13 @@ |
#include "chrome/browser/history/web_history_service_factory.h" |
#include "chrome/browser/prefs/browser_prefs.h" |
#include "chrome/browser/profiles/profile_manager.h" |
-#include "chrome/common/chrome_constants.h" |
#include "chrome/common/pref_names.h" |
#include "chrome/common/safe_browsing/csd.pb.h" |
#include "chrome/test/base/testing_browser_process.h" |
#include "chrome/test/base/testing_pref_service_syncable.h" |
#include "chrome/test/base/testing_profile.h" |
#include "chrome/test/base/testing_profile_manager.h" |
+#include "components/history/core/browser/history_constants.h" |
#include "content/public/test/test_browser_thread_bundle.h" |
#include "content/public/test/test_utils.h" |
#include "testing/gtest/include/gtest/gtest.h" |
@@ -41,7 +41,7 @@ KeyedService* BuildHistoryService(content::BrowserContext* context) { |
// Delete the file before creating the service. |
base::FilePath history_path( |
- profile->GetPath().Append(chrome::kHistoryFilename)); |
+ profile->GetPath().Append(history::kHistoryFilename)); |
if (!base::DeleteFile(history_path, false) || |
base::PathExists(history_path)) { |
ADD_FAILURE() << "failed to delete history db file " |