#include "components/history/core/test/history_backend_db_base_test.h"
#include "base/files/file_path.h"
#include "base/location.h"
#include "base/memory/raw_ptr.h"
#include "base/run_loop.h"
#include "base/strings/stringprintf.h"
#include "base/task/single_thread_task_runner.h"
#include "components/history/core/browser/download_constants.h"
#include "components/history/core/browser/download_row.h"
#include "components/history/core/browser/history_backend.h"
#include "components/history/core/browser/history_backend_client.h"
#include "components/history/core/browser/history_constants.h"
#include "components/history/core/browser/history_database_params.h"
#include "components/history/core/browser/in_memory_history_backend.h"
#include "components/history/core/test/database_test_utils.h"
#include "components/history/core/test/test_history_database.h"
#include "url/gurl.h"
namespace history {
class BackendDelegate : public HistoryBackend::Delegate { … };
HistoryBackendDBBaseTest::HistoryBackendDBBaseTest()
: … { … }
HistoryBackendDBBaseTest::~HistoryBackendDBBaseTest() { … }
void HistoryBackendDBBaseTest::SetUp() { … }
void HistoryBackendDBBaseTest::TearDown() { … }
void HistoryBackendDBBaseTest::CreateBackendAndDatabase() { … }
void HistoryBackendDBBaseTest::CreateBackendAndDatabaseAllowFail() { … }
void HistoryBackendDBBaseTest::CreateDBVersion(int version) { … }
void HistoryBackendDBBaseTest::DeleteBackend() { … }
bool HistoryBackendDBBaseTest::AddDownload(uint32_t id,
const std::string& guid,
DownloadState state,
base::Time time) { … }
}