1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_BROWSER_ATTRIBUTION_REPORTING_ATTRIBUTION_TRIGGER_H_
#define CONTENT_BROWSER_ATTRIBUTION_REPORTING_ATTRIBUTION_TRIGGER_H_
#include "components/attribution_reporting/suitable_origin.h"
#include "components/attribution_reporting/trigger_registration.h"
#include "content/browser/attribution_reporting/aggregatable_result.mojom.h"
#include "content/browser/attribution_reporting/event_level_result.mojom.h"
#include "content/common/content_export.h"
#include "services/metrics/public/cpp/ukm_source_id.h"
namespace content {
// Struct which represents a conversion registration event that was observed in
// the renderer and is now being used by the browser process.
class CONTENT_EXPORT AttributionTrigger {
public:
using AggregatableResult = attribution_reporting::mojom::AggregatableResult;
using EventLevelResult = attribution_reporting::mojom::EventLevelResult;
AttributionTrigger(attribution_reporting::SuitableOrigin reporting_origin,
attribution_reporting::TriggerRegistration registration,
attribution_reporting::SuitableOrigin destination_origin,
bool is_within_fenced_frame,
ukm::SourceId);
AttributionTrigger(const AttributionTrigger&);
AttributionTrigger& operator=(const AttributionTrigger&);
AttributionTrigger(AttributionTrigger&&);
AttributionTrigger& operator=(AttributionTrigger&&);
~AttributionTrigger();
const attribution_reporting::SuitableOrigin& reporting_origin() const {
return reporting_origin_;
}
const attribution_reporting::TriggerRegistration& registration() const {
return registration_;
}
attribution_reporting::TriggerRegistration& registration() {
return registration_;
}
const attribution_reporting::SuitableOrigin& destination_origin() const {
return destination_origin_;
}
bool is_within_fenced_frame() const { return is_within_fenced_frame_; }
ukm::SourceId ukm_source_id() const { return ukm_source_id_; }
bool HasAggregatableData() const;
friend bool operator==(const AttributionTrigger&,
const AttributionTrigger&) = default;
private:
attribution_reporting::SuitableOrigin reporting_origin_;
attribution_reporting::TriggerRegistration registration_;
// Origin on which this trigger was registered.
attribution_reporting::SuitableOrigin destination_origin_;
// Whether the trigger is registered within a fenced frame tree.
bool is_within_fenced_frame_;
// The source ID used to record UKM.
ukm::SourceId ukm_source_id_;
};
} // namespace content
#endif // CONTENT_BROWSER_ATTRIBUTION_REPORTING_ATTRIBUTION_TRIGGER_H_
|