#ifndef CONTENT_BROWSER_ATTRIBUTION_REPORTING_ATTRIBUTION_MANAGER_H_
#define CONTENT_BROWSER_ATTRIBUTION_REPORTING_ATTRIBUTION_MANAGER_H_
#include <optional>
#include <vector>
#include "base/functional/callback_forward.h"
#include "content/browser/attribution_reporting/attribution_report.h"
#include "content/common/content_export.h"
#include "content/public/browser/attribution_data_model.h"
#include "content/public/browser/storage_partition.h"
#include "services/network/public/mojom/attribution.mojom-forward.h"
namespace attribution_reporting {
class SuitableOrigin;
struct RegistrationHeaderError;
}
namespace base {
class Time;
}
namespace content {
class AttributionDataHostManager;
class AttributionObserver;
class AttributionTrigger;
class BrowserContext;
class BrowsingDataFilterBuilder;
class StorableSource;
class StoredSource;
class WebContents;
struct GlobalRenderFrameHostId;
struct OsRegistration;
class CONTENT_EXPORT AttributionManager : public AttributionDataModel { … };
}
#endif