| Index: net/http/http_server_properties_impl.cc
|
| diff --git a/net/http/http_server_properties_impl.cc b/net/http/http_server_properties_impl.cc
|
| index c55f32b30c6ffef125f9e9d40dd1d7a155973801..201e19f21a413663747afb52da99f5f22088ac73 100644
|
| --- a/net/http/http_server_properties_impl.cc
|
| +++ b/net/http/http_server_properties_impl.cc
|
| @@ -23,8 +23,6 @@ const uint64 kBrokenAlternateProtocolDelaySecs = 300;
|
| HttpServerPropertiesImpl::HttpServerPropertiesImpl()
|
| : spdy_servers_map_(SpdyServerHostPortMap::NO_AUTO_EVICT),
|
| alternate_protocol_map_(AlternateProtocolMap::NO_AUTO_EVICT),
|
| - alternate_protocol_experiment_(
|
| - ALTERNATE_PROTOCOL_NOT_PART_OF_EXPERIMENT),
|
| spdy_settings_map_(SpdySettingsMap::NO_AUTO_EVICT),
|
| alternate_protocol_probability_threshold_(1),
|
| weak_ptr_factory_(this) {
|
| @@ -287,8 +285,7 @@ void HttpServerPropertiesImpl::SetAlternateProtocol(
|
| // TODO(rch): Consider the case where multiple requests are started
|
| // before the first completes. In this case, only one of the jobs
|
| // would reach this code, whereas all of them should should have.
|
| - HistogramAlternateProtocolUsage(ALTERNATE_PROTOCOL_USAGE_MAPPING_MISSING,
|
| - alternate_protocol_experiment_);
|
| + HistogramAlternateProtocolUsage(ALTERNATE_PROTOCOL_USAGE_MAPPING_MISSING);
|
| }
|
| }
|
|
|
| @@ -361,16 +358,6 @@ HttpServerPropertiesImpl::alternate_protocol_map() const {
|
| return alternate_protocol_map_;
|
| }
|
|
|
| -void HttpServerPropertiesImpl::SetAlternateProtocolExperiment(
|
| - AlternateProtocolExperiment experiment) {
|
| - alternate_protocol_experiment_ = experiment;
|
| -}
|
| -
|
| -AlternateProtocolExperiment
|
| -HttpServerPropertiesImpl::GetAlternateProtocolExperiment() const {
|
| - return alternate_protocol_experiment_;
|
| -}
|
| -
|
| const SettingsMap& HttpServerPropertiesImpl::GetSpdySettings(
|
| const HostPortPair& host_port_pair) {
|
| SpdySettingsMap::iterator it = spdy_settings_map_.Get(host_port_pair);
|
|
|