#include "net/http/http_stream_key.h"
#include "base/strings/strcat.h"
#include "net/base/network_anonymization_key.h"
#include "net/base/privacy_mode.h"
#include "net/dns/public/secure_dns_policy.h"
#include "net/socket/client_socket_pool.h"
#include "net/socket/socket_tag.h"
#include "net/spdy/spdy_session_key.h"
#include "url/gurl.h"
#include "url/scheme_host_port.h"
namespace net {
HttpStreamKey::HttpStreamKey() = default;
HttpStreamKey::HttpStreamKey(url::SchemeHostPort destination,
PrivacyMode privacy_mode,
SocketTag socket_tag,
NetworkAnonymizationKey network_anonymization_key,
SecureDnsPolicy secure_dns_policy,
bool disable_cert_network_fetches)
: … { … }
HttpStreamKey::~HttpStreamKey() = default;
HttpStreamKey::HttpStreamKey(const HttpStreamKey& other) = default;
HttpStreamKey& HttpStreamKey::operator=(const HttpStreamKey& other) = default;
bool HttpStreamKey::operator==(const HttpStreamKey& other) const = default;
bool HttpStreamKey::operator<(const HttpStreamKey& other) const { … }
std::string HttpStreamKey::ToString() const { … }
base::Value::Dict HttpStreamKey::ToValue() const { … }
SpdySessionKey HttpStreamKey::ToSpdySessionKey() const { … }
QuicSessionKey HttpStreamKey::ToQuicSessionKey() const { … }
}