chromium/components/blocklist/opt_out_blocklist/sql/opt_out_store_sql.h

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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 base

namespace sql {
class Database;
}  // namespace sql

namespace blocklist {

// OptOutStoreSQL is an instance of OptOutStore
// which is implemented using a SQLite database.
class OptOutStoreSQL : public OptOutStore {};

}  // namespace blocklist

#endif  // COMPONENTS_BLOCKLIST_OPT_OUT_BLOCKLIST_SQL_OPT_OUT_STORE_SQL_H_