| Index: net/http/http_stream_factory_impl_job.cc
|
| diff --git a/net/http/http_stream_factory_impl_job.cc b/net/http/http_stream_factory_impl_job.cc
|
| index 14bcf5e57c2abaf376c4de26c92a519ac495e6f7..9fea58b6473ffde273661db01419e789fa12d3fc 100644
|
| --- a/net/http/http_stream_factory_impl_job.cc
|
| +++ b/net/http/http_stream_factory_impl_job.cc
|
| @@ -1483,20 +1483,6 @@ void HttpStreamFactoryImpl::Job::SwitchToSpdyMode() {
|
| using_spdy_ = true;
|
| }
|
|
|
| -void HttpStreamFactoryImpl::Job::ReportJobSucceededForRequest() {
|
| - if (using_existing_quic_session_) {
|
| - // If an existing session was used, then no TCP connection was
|
| - // started.
|
| - HistogramAlternateProtocolUsage(ALTERNATE_PROTOCOL_USAGE_NO_RACE);
|
| - } else if (IsSpdyAlternative() || IsQuicAlternative()) {
|
| - // This Job was the alternative Job, and hence won the race.
|
| - HistogramAlternateProtocolUsage(ALTERNATE_PROTOCOL_USAGE_WON_RACE);
|
| - } else {
|
| - // This Job was the normal Job, and hence the alternative Job lost the race.
|
| - HistogramAlternateProtocolUsage(ALTERNATE_PROTOCOL_USAGE_LOST_RACE);
|
| - }
|
| -}
|
| -
|
| ClientSocketPoolManager::SocketGroupType
|
| HttpStreamFactoryImpl::Job::GetSocketGroup() const {
|
| std::string scheme = origin_url_.scheme();
|
|
|