#ifndef COMPONENTS_HISTORY_CORE_BROWSER_TOP_SITES_BACKEND_H_
#define COMPONENTS_HISTORY_CORE_BROWSER_TOP_SITES_BACKEND_H_
#include <memory>
#include "base/files/file_path.h"
#include "base/functional/callback.h"
#include "base/memory/ref_counted.h"
#include "components/history/core/browser/history_types.h"
namespace base {
class CancelableTaskTracker;
class FilePath;
class SequencedTaskRunner;
}
namespace history {
class TopSitesDatabase;
class TopSitesBackend : public base::RefCountedThreadSafe<TopSitesBackend> { … };
}
#endif