| Index: net/http/http_server_properties.h
|
| diff --git a/net/http/http_server_properties.h b/net/http/http_server_properties.h
|
| index 341ed8d389fcc34adf7aaf4f81f559782a56e0aa..60f9ee4c38c7232d973854f1eaee03669b34402a 100644
|
| --- a/net/http/http_server_properties.h
|
| +++ b/net/http/http_server_properties.h
|
| @@ -206,7 +206,7 @@ typedef std::vector<AlternativeService> AlternativeServiceVector;
|
| typedef std::vector<AlternativeServiceInfo> AlternativeServiceInfoVector;
|
| typedef base::MRUCache<HostPortPair, AlternativeServiceInfoVector>
|
| AlternativeServiceMap;
|
| -typedef base::MRUCache<HostPortPair, SettingsMap> SpdySettingsMap;
|
| +typedef base::MRUCache<url::SchemeHostPort, SettingsMap> SpdySettingsMap;
|
| typedef base::MRUCache<HostPortPair, ServerNetworkStats> ServerNetworkStatsMap;
|
| typedef base::MRUCache<QuicServerId, std::string> QuicServerInfoMap;
|
|
|
| @@ -322,17 +322,17 @@ class NET_EXPORT HttpServerProperties {
|
| // Gets a reference to the SettingsMap stored for a host.
|
| // If no settings are stored, returns an empty SettingsMap.
|
| virtual const SettingsMap& GetSpdySettings(
|
| - const HostPortPair& host_port_pair) = 0;
|
| + const url::SchemeHostPort& server) = 0;
|
|
|
| // Saves an individual SPDY setting for a host. Returns true if SPDY setting
|
| // is to be persisted.
|
| - virtual bool SetSpdySetting(const HostPortPair& host_port_pair,
|
| + virtual bool SetSpdySetting(const url::SchemeHostPort& server,
|
| SpdySettingsIds id,
|
| SpdySettingsFlags flags,
|
| uint32_t value) = 0;
|
|
|
| // Clears all SPDY settings for a host.
|
| - virtual void ClearSpdySettings(const HostPortPair& host_port_pair) = 0;
|
| + virtual void ClearSpdySettings(const url::SchemeHostPort& server) = 0;
|
|
|
| // Clears all SPDY settings for all hosts.
|
| virtual void ClearAllSpdySettings() = 0;
|
|
|