| Index: chrome/test/base/testing_profile.cc
|
| diff --git a/chrome/test/base/testing_profile.cc b/chrome/test/base/testing_profile.cc
|
| index 2f540caa5e8191ed0db30fe0e70b07a57131821f..85fcdab7cff08e88709c22c0aa4222d678b969d6 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"
|
| @@ -477,7 +478,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;
|
| }
|
|
|