#include "net/quic/properties_based_quic_server_info.h"
#include "base/base64.h"
#include "base/metrics/histogram_macros.h"
#include "net/base/net_errors.h"
#include "net/http/http_server_properties.h"
string;
namespace {
void RecordQuicServerInfoFailure(net::QuicServerInfo::FailureReason failure) { … }
}
namespace net {
PropertiesBasedQuicServerInfo::PropertiesBasedQuicServerInfo(
const quic::QuicServerId& server_id,
const NetworkAnonymizationKey& network_anonymization_key,
HttpServerProperties* http_server_properties)
: … { … }
PropertiesBasedQuicServerInfo::~PropertiesBasedQuicServerInfo() = default;
bool PropertiesBasedQuicServerInfo::Load() { … }
void PropertiesBasedQuicServerInfo::Persist() { … }
}