blob: bd974b1098e04bfda340166260192e05a9cd8cee (
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
|
// 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_PAGE_METRICS_H_
#define CONTENT_BROWSER_CONVERSIONS_CONVERSION_PAGE_METRICS_H_
namespace content {
class StorableConversion;
// Keeps track of per-page-load metrics for conversion measurement. Lifetime is
// scoped to a single page load.
class ConversionPageMetrics {
public:
ConversionPageMetrics();
~ConversionPageMetrics();
ConversionPageMetrics(const ConversionPageMetrics& other) = delete;
ConversionPageMetrics& operator=(const ConversionPageMetrics& other) = delete;
// Called when a conversion is registered.
void OnConversion(const StorableConversion& conversion);
private:
// Keeps track of how many conversion registrations there have been on the
// current page.
int num_conversions_on_current_page_ = 0;
};
} // namespace content
#endif // CONTENT_BROWSER_CONVERSIONS_CONVERSION_PAGE_METRICS_H_
|