Index: chrome/test/base/testing_profile.cc |
diff --git a/chrome/test/base/testing_profile.cc b/chrome/test/base/testing_profile.cc |
index fa1e454fec44c74e6324acc59c26dcc93eb4f0c9..b9c45d3b17a166dee0eabede9e25c3a587bfe0df 100644 |
--- a/chrome/test/base/testing_profile.cc |
+++ b/chrome/test/base/testing_profile.cc |
@@ -52,6 +52,7 @@ |
#include "components/bookmarks/browser/bookmark_model.h" |
#include "components/bookmarks/common/bookmark_constants.h" |
#include "components/content_settings/core/browser/host_content_settings_map.h" |
+#include "components/history/core/browser/history_constants.h" |
#include "components/history/core/browser/top_sites_observer.h" |
#include "components/keyed_service/content/browser_context_dependency_manager.h" |
#include "components/policy/core/common/policy_service.h" |
@@ -474,7 +475,7 @@ bool TestingProfile::CreateHistoryService(bool delete_file, bool no_db) { |
DestroyHistoryService(); |
if (delete_file) { |
base::FilePath path = GetPath(); |
- path = path.Append(chrome::kHistoryFilename); |
+ path = path.Append(history::kHistoryFilename); |
if (!base::DeleteFile(path, false) || base::PathExists(path)) |
return false; |
} |