#ifndef CONTENT_BROWSER_ATTRIBUTION_REPORTING_RATE_LIMIT_TABLE_H_
#define CONTENT_BROWSER_ATTRIBUTION_REPORTING_RATE_LIMIT_TABLE_H_
#include <stdint.h>
#include <optional>
#include <set>
#include <vector>
#include "base/containers/flat_set.h"
#include "base/memory/raw_ref.h"
#include "base/sequence_checker.h"
#include "base/thread_annotations.h"
#include "base/time/time.h"
#include "base/types/expected.h"
#include "content/browser/attribution_reporting/attribution_report.h"
#include "content/browser/attribution_reporting/stored_source.h"
#include "content/common/content_export.h"
#include "content/public/browser/attribution_data_model.h"
#include "content/public/browser/storage_partition.h"
namespace attribution_reporting {
class SuitableOrigin;
}
namespace net {
class SchemefulSite;
}
namespace sql {
class Database;
}
namespace content {
struct AttributionInfo;
class AttributionResolverDelegate;
class CommonSourceInfo;
class StorableSource;
enum class RateLimitResult : int;
class CONTENT_EXPORT RateLimitTable { … };
}
#endif