// 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 "net/quic/web_transport_error.h" #include "base/strings/strcat.h" namespace net { std::string WebTransportErrorToString(const WebTransportError& error) { … } std::ostream& operator<<(std::ostream& os, const WebTransportError& error) { … } } // namespace net