#ifndef COMPONENTS_HISTORY_CORE_BROWSER_HISTORY_DATABASE_H_
#define COMPONENTS_HISTORY_CORE_BROWSER_HISTORY_DATABASE_H_
#include <memory>
#include "base/compiler_specific.h"
#include "base/gtest_prod_util.h"
#include "base/time/time.h"
#include "build/build_config.h"
#include "components/history/core/browser/download_database.h"
#include "components/history/core/browser/history_types.h"
#include "components/history/core/browser/sync/history_sync_metadata_database.h"
#include "components/history/core/browser/url_database.h"
#include "components/history/core/browser/visit_annotations_database.h"
#include "components/history/core/browser/visit_database.h"
#include "components/history/core/browser/visited_link_database.h"
#include "components/history/core/browser/visitsegment_database.h"
#include "sql/database.h"
#include "sql/init_status.h"
#include "sql/meta_table.h"
#if BUILDFLAG(IS_ANDROID)
#include "components/history/core/browser/android/android_urls_database.h"
#endif
namespace base {
class FilePath;
}
namespace sql {
class Transaction;
}
class InMemoryURLIndexTest;
namespace history {
class HistoryDatabase : public DownloadDatabase,
#if BUILDFLAG(IS_ANDROID)
public AndroidURLsDatabase,
#endif
public URLDatabase,
public VisitDatabase,
public VisitAnnotationsDatabase,
public VisitedLinkDatabase,
public VisitSegmentDatabase { … };
}
#endif