| Index: net/http/http_server_properties_impl.h
|
| ===================================================================
|
| --- net/http/http_server_properties_impl.h (revision 127896)
|
| +++ net/http/http_server_properties_impl.h (working copy)
|
| @@ -103,25 +103,22 @@
|
| // Returns all Alternate-Protocol mappings.
|
| virtual const AlternateProtocolMap& alternate_protocol_map() const OVERRIDE;
|
|
|
| - // Gets a reference to the SpdySettings stored for a host.
|
| - // If no settings are stored, returns an empty set of settings.
|
| - virtual const spdy::SpdySettings& GetSpdySettings(
|
| + // Gets a reference to the SettingsMap stored for a host.
|
| + // If no settings are stored, returns an empty SettingsMap.
|
| + virtual const spdy::SettingsMap& GetSpdySettings(
|
| const HostPortPair& host_port_pair) const OVERRIDE;
|
|
|
| - // Saves settings for a host. Returns true if SpdySettings are to be
|
| - // persisted because |spdy_settings_map_| has been updated.
|
| - virtual bool SetSpdySettings(const HostPortPair& host_port_pair,
|
| - const spdy::SpdySettings& settings) OVERRIDE;
|
| + // 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,
|
| + uint32 id,
|
| + const spdy::SettingsFlagsAndValue& flags_and_value) OVERRIDE;
|
|
|
| - // Saves an individual setting for a host. Returns true if SpdySetting is to
|
| - // be persisted because |spdy_settings_map_| has been updated.
|
| - virtual bool SetSpdySetting(const HostPortPair& host_port_pair,
|
| - const spdy::SpdySetting& setting) OVERRIDE;
|
| -
|
| - // Clears all spdy_settings.
|
| + // Clears all entries in |spdy_settings_map_|.
|
| virtual void ClearSpdySettings() OVERRIDE;
|
|
|
| - // Returns all persistent SpdySettings.
|
| + // Returns all persistent SPDY settings.
|
| virtual const SpdySettingsMap& spdy_settings_map() const OVERRIDE;
|
|
|
| virtual HttpPipelinedHostCapability GetPipelineCapability(
|
|
|