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..ced861c154eb71497824d240c8362e2764b7e1b7 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 |
@@ -28,6 +28,7 @@ |
#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 +42,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 " |