blob: 4d6472925dd13e818217d66ead22a4eab5dcd063 [file] [log] [blame]
// Copyright 2022 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.
#include "content/browser/attribution_reporting/attribution_metrics.h"
#include "base/metrics/histogram_functions.h"
namespace content {
void RecordRegisterConversionAllowed(bool allowed) {
base::UmaHistogramBoolean("Conversions.RegisterConversionAllowed", allowed);
}
void RecordRegisterImpressionAllowed(bool allowed) {
base::UmaHistogramBoolean("Conversions.RegisterImpressionAllowed", allowed);
}
} // namespace content