// Copyright 2018 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef NET_QUIC_QUIC_SESSION_KEY_H_ #define NET_QUIC_QUIC_SESSION_KEY_H_ #include "net/base/host_port_pair.h" #include "net/base/network_anonymization_key.h" #include "net/base/privacy_mode.h" #include "net/base/proxy_chain.h" #include "net/base/session_usage.h" #include "net/dns/public/secure_dns_policy.h" #include "net/socket/socket_tag.h" #include "net/third_party/quiche/src/quiche/quic/core/quic_server_id.h" namespace net { // The key used to identify sessions. Includes the quic::QuicServerId and socket // tag. class NET_EXPORT_PRIVATE QuicSessionKey { … }; } // namespace net #endif // NET_QUIC_QUIC_SESSION_KEY_H_