// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/enterprise/connectors/device_trust/key_management/core/persistence/metrics_utils.h" #include "base/metrics/histogram_functions.h" #include "base/strings/stringprintf.h" namespace enterprise_connectors { namespace { constexpr char kErrorHistogramFormat[] = …; std::string OperationToVariant(KeyPersistenceOperation operation) { … } } // namespace void RecordError(KeyPersistenceOperation operation, KeyPersistenceError error) { … } } // namespace enterprise_connectors