#ifndef CONTENT_BROWSER_AGGREGATION_SERVICE_AGGREGATION_SERVICE_STORAGE_SQL_H_
#define CONTENT_BROWSER_AGGREGATION_SERVICE_AGGREGATION_SERVICE_STORAGE_SQL_H_
#include <stdint.h>
#include <optional>
#include <set>
#include <string_view>
#include <vector>
#include "base/files/file_path.h"
#include "base/memory/raw_ref.h"
#include "base/sequence_checker.h"
#include "base/thread_annotations.h"
#include "base/time/time.h"
#include "content/browser/aggregation_service/aggregation_service.h"
#include "content/browser/aggregation_service/aggregation_service_storage.h"
#include "content/common/content_export.h"
#include "content/public/browser/storage_partition.h"
#include "sql/database.h"
#include "sql/meta_table.h"
class GURL;
namespace base {
class Clock;
}
namespace sql {
class Statement;
}
namespace url {
class Origin;
}
namespace content {
class AggregatableReportRequest;
struct PublicKey;
struct PublicKeyset;
class CONTENT_EXPORT AggregationServiceStorageSql
: public AggregationServiceStorage { … };
}
#endif