#include "net/base/transport_info.h"
#include <ostream>
#include <utility>
#include "base/check.h"
#include "base/notreached.h"
#include "base/strings/strcat.h"
namespace net {
std::string_view TransportTypeToString(TransportType type) { … }
TransportInfo::TransportInfo() = default;
TransportInfo::TransportInfo(TransportType type_arg,
IPEndPoint endpoint_arg,
std::string accept_ch_frame_arg,
bool cert_is_issued_by_known_root,
NextProto negotiated_protocol)
: … { … }
TransportInfo::TransportInfo(const TransportInfo&) = default;
TransportInfo::~TransportInfo() = default;
bool TransportInfo::operator==(const TransportInfo& other) const = default;
std::string TransportInfo::ToString() const { … }
std::ostream& operator<<(std::ostream& out, TransportType type) { … }
std::ostream& operator<<(std::ostream& out, const TransportInfo& info) { … }
}