chromium/components/metrics/structured/lib/key_util.cc

// Copyright 2023 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/metrics/structured/lib/key_util.h"

#include <utility>

#include "base/check_op.h"
#include "base/unguessable_token.h"

namespace metrics::structured::util {
namespace {

constexpr std::string_view kKeyString =;
constexpr std::string_view kLastRotationString =;
constexpr std::string_view kRotationPeriodString =;

}  // namespace

std::string GenerateNewKey() {}

base::Value CreateValueFromKeyProto(const KeyProto& proto) {}

std::optional<KeyProto> CreateKeyProtoFromValue(
    const base::Value::Dict& value) {}

}  // namespace metrics::structured::util