#ifndef COMPONENTS_HISTORY_CORE_TEST_TEST_HISTORY_DATABASE_H_
#define COMPONENTS_HISTORY_CORE_TEST_TEST_HISTORY_DATABASE_H_
#include "components/history/core/browser/download_types.h"
#include "components/history/core/browser/history_database.h"
namespace base {
class FilePath;
}
namespace history {
struct HistoryDatabaseParams;
extern const DownloadInterruptReason kTestDownloadInterruptReasonNone;
extern const DownloadInterruptReason kTestDownloadInterruptReasonCrash;
class TestHistoryDatabase : public HistoryDatabase { … };
HistoryDatabaseParams TestHistoryDatabaseParamsForPath(
const base::FilePath& history_dir);
}
#endif