chromium/components/payments/core/payment_request_metrics.cc

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "components/payments/core/payment_request_metrics.h"

#include <string>

#include "base/metrics/histogram_functions.h"
#include "base/strings/strcat.h"
#include "components/payments/core/payment_prefs.h"
#include "components/prefs/pref_service.h"

namespace payments {

namespace {
// Returns the appropriate `CanMakePaymentPreferenceSetter` entry for `pref`.
CanMakePaymentPreferenceSetter GetCanMakePaymentPreferenceSetter(
    const PrefService::Preference* pref) {}

}  // namespace

void RecordCanMakePaymentPrefMetrics(const PrefService& pref_service,
                                     const std::string& suffix) {}

}  // namespace payments