// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "services/network/trust_tokens/types.h" #include "base/json/values_util.h" #include "base/time/time.h" #include "services/network/trust_tokens/proto/public.pb.h" namespace network::internal { base::Time TimestampToTime(Timestamp timestamp) { … } Timestamp TimeToTimestamp(base::Time time) { … } std::string_view TrustTokenOperationTypeToString( mojom::TrustTokenOperationType type) { … } std::string ProtocolVersionToString( mojom::TrustTokenProtocolVersion my_version) { … } } // namespace network::internal