#ifndef COMPONENTS_BLOCKLIST_OPT_OUT_BLOCKLIST_SQL_OPT_OUT_STORE_SQL_H_
#define COMPONENTS_BLOCKLIST_OPT_OUT_BLOCKLIST_SQL_OPT_OUT_STORE_SQL_H_
#include <stdint.h>
#include <memory>
#include <string>
#include "base/feature_list.h"
#include "base/files/file_path.h"
#include "base/threading/thread_checker.h"
#include "base/time/time.h"
#include "components/blocklist/opt_out_blocklist/opt_out_store.h"
namespace base {
class SequencedTaskRunner;
class SingleThreadTaskRunner;
}
namespace sql {
class Database;
}
namespace blocklist {
class OptOutStoreSQL : public OptOutStore { … };
}
#endif