// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "third_party/blink/renderer/platform/loader/fetch/trust_token_params_conversion.h" #include "services/network/public/cpp/optional_trust_token_params.h" #include "services/network/public/mojom/trust_tokens.mojom-blink.h" namespace blink { network::OptionalTrustTokenParams ConvertTrustTokenParams( const std::optional<network::mojom::blink::TrustTokenParams>& maybe_in) { … } } // namespace blink