diff options
author | kundaji <kundaji@chromium.org> | 2014-09-22 18:35:21 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-09-23 01:35:39 +0000 |
commit | 88ca41196a5d2db1554d3848af0fe5038873a937 (patch) | |
tree | 8a9f5aa12460f0a684acc001c0d0ef801cf6cbf2 /net/spdy | |
parent | e84810a2eccc899460752b403a746d5cc5ffafd9 (diff) | |
download | chromium_src-88ca41196a5d2db1554d3848af0fe5038873a937.zip chromium_src-88ca41196a5d2db1554d3848af0fe5038873a937.tar.gz chromium_src-88ca41196a5d2db1554d3848af0fe5038873a937.tar.bz2 |
Add data reduction functionality to all platforms.
* Remove all #if defined guards from data reduction proxy functionality.
* Hard code proxy urls in params rather than providing them in gyp files.
* Add DataCompressionProxyRollout field trial to all platforms.
* Pass in bypass duration into UpdateRetryInfoOnFallback rather than computing
it based on SPDY_PROXY_AUTH_ORIGIN. Remove unused UMAs.
BUG=384394,384397
Review URL: https://codereview.chromium.org/382313003
Cr-Commit-Position: refs/heads/master@{#296122}
Diffstat (limited to 'net/spdy')
-rw-r--r-- | net/spdy/spdy_session.cc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/net/spdy/spdy_session.cc b/net/spdy/spdy_session.cc index 62f938d..285bccf 100644 --- a/net/spdy/spdy_session.cc +++ b/net/spdy/spdy_session.cc @@ -743,11 +743,6 @@ void SpdySession::InitializeWithSocket( "Net.SpdyVersion2", protocol_ - kProtoSPDYMinimumVersion, kProtoSPDYMaximumVersion - kProtoSPDYMinimumVersion + 1); -#if defined(SPDY_PROXY_AUTH_ORIGIN) - UMA_HISTOGRAM_BOOLEAN("Net.SpdySessions_DataReductionProxy", - host_port_pair().Equals(HostPortPair::FromURL( - GURL(SPDY_PROXY_AUTH_ORIGIN)))); -#endif net_log_.AddEvent(NetLog::TYPE_SPDY_SESSION_INITIALIZED, base::Bind(&NetLogSpdyInitializedCallback, |