blob: 64d2e62f0efe93a3dc233cfe64ae8af5d613d89a (
plain)
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
|
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_BROWSER_CONVERSIONS_CONVERSION_REPORT_H_
#define CONTENT_BROWSER_CONVERSIONS_CONVERSION_REPORT_H_
#include <stdint.h>
#include <string>
#include <vector>
#include "base/optional.h"
#include "base/time/time.h"
#include "content/browser/conversions/storable_impression.h"
#include "content/common/content_export.h"
namespace content {
// Struct that contains all the data needed to serialize and send a conversion
// report. This represents the report for a conversion event and its associated
// impression.
struct CONTENT_EXPORT ConversionReport {
// The conversion_id may not be set for a conversion report.
ConversionReport(const StorableImpression& impression,
const std::string& conversion_data,
base::Time report_time,
const base::Optional<int64_t>& conversion_id);
ConversionReport(const ConversionReport& other);
~ConversionReport();
// Impression associated with this conversion report.
const StorableImpression impression;
// Data provided at reporting time by the reporting origin. String
// representing a valid hexadecimal number.
const std::string conversion_data;
// The time this conversion report should be sent.
base::Time report_time;
// The attribution credit assigned to this conversion report. This is derived
// from the set of all impressions that matched a singular conversion event.
// This should be in the range 0-100. A set of ConversionReports for one
// conversion event should have their |attribution_credit| sum equal to 100.
int attribution_credit = 0;
// Id assigned by storage to uniquely identify a completed conversion. If
// null, an ID has not been assigned yet.
const base::Optional<int64_t> conversion_id;
};
// Only used for logging.
CONTENT_EXPORT std::ostream& operator<<(
std::ostream& out,
const ConversionReport& ConversionReport);
} // namespace content
#endif // CONTENT_BROWSER_CONVERSIONS_CONVERSION_REPORT_H_
|