#ifndef CONTENT_BROWSER_ATTRIBUTION_REPORTING_ATTRIBUTION_HOST_H_
#define CONTENT_BROWSER_ATTRIBUTION_REPORTING_ATTRIBUTION_HOST_H_
#include <stdint.h>
#include <memory>
#include <string>
#include "base/containers/flat_set.h"
#include "build/build_config.h"
#include "build/buildflag.h"
#include "components/attribution_reporting/data_host.mojom-forward.h"
#include "content/browser/attribution_reporting/attribution_suitable_context.h"
#include "content/common/content_export.h"
#include "content/public/browser/render_frame_host_receiver_set.h"
#include "content/public/browser/web_contents_observer.h"
#include "content/public/browser/web_contents_user_data.h"
#include "mojo/public/cpp/bindings/pending_associated_receiver.h"
#include "third_party/blink/public/mojom/conversions/conversions.mojom.h"
namespace content {
struct AttributionInputEvent;
class RenderFrameHost;
class WebContents;
#if BUILDFLAG(IS_ANDROID)
class AttributionInputEventTrackerAndroid;
#endif
class CONTENT_EXPORT AttributionHost
: public WebContentsObserver,
public WebContentsUserData<AttributionHost>,
public blink::mojom::AttributionHost { … };
}
#endif