| Index: net/http/http_server_properties_impl.h
|
| diff --git a/net/http/http_server_properties_impl.h b/net/http/http_server_properties_impl.h
|
| index 8d251a23645f34d6a5c9309ed539196fb89d5d56..fa55734f9a345df16f54d6d11e4162414715eb50 100644
|
| --- a/net/http/http_server_properties_impl.h
|
| +++ b/net/http/http_server_properties_impl.h
|
| @@ -43,7 +43,7 @@ class NET_EXPORT HttpServerPropertiesImpl
|
|
|
| void InitializeSpdySettingsServers(SpdySettingsMap* spdy_settings_map);
|
|
|
| - void InitializeSupportsQuic(SupportsQuicMap* supports_quic_map);
|
| + void InitializeSupportsQuic(IPAddressNumber* last_address);
|
|
|
| void InitializeServerNetworkStats(
|
| ServerNetworkStatsMap* server_network_stats_map);
|
| @@ -101,12 +101,8 @@ class NET_EXPORT HttpServerPropertiesImpl
|
| void ClearSpdySettings(const HostPortPair& host_port_pair) override;
|
| void ClearAllSpdySettings() override;
|
| const SpdySettingsMap& spdy_settings_map() const override;
|
| - SupportsQuic GetSupportsQuic(
|
| - const HostPortPair& host_port_pair) const override;
|
| - void SetSupportsQuic(const HostPortPair& host_port_pair,
|
| - bool used_quic,
|
| - const std::string& address) override;
|
| - const SupportsQuicMap& supports_quic_map() const override;
|
| + bool GetSupportsQuic(IPAddressNumber* last_address) const override;
|
| + void SetSupportsQuic(bool used_quic, const IPAddressNumber& address) override;
|
| void SetServerNetworkStats(const HostPortPair& host_port_pair,
|
| ServerNetworkStats stats) override;
|
| const ServerNetworkStats* GetServerNetworkStats(
|
| @@ -149,8 +145,8 @@ class NET_EXPORT HttpServerPropertiesImpl
|
| BrokenAlternateProtocolList broken_alternate_protocol_list_;
|
| BrokenAlternateProtocolMap broken_alternate_protocol_map_;
|
|
|
| + IPAddressNumber last_quic_address_;
|
| SpdySettingsMap spdy_settings_map_;
|
| - SupportsQuicMap supports_quic_map_;
|
| ServerNetworkStatsMap server_network_stats_map_;
|
| // Contains a map of servers which could share the same alternate protocol.
|
| // Map from a Canonical host/port (host is some postfix of host names) to an
|
|
|