Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(212)

Side by Side Diff: net/http/http_pipelined_stream.h

Issue 12886034: Remove experimental code to pick the "warmest" socket (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: sync, fix conflict Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/http/http_network_transaction_spdy3_unittest.cc ('k') | net/http/http_pipelined_stream.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef NET_HTTP_HTTP_PIPELINED_STREAM_H_ 5 #ifndef NET_HTTP_HTTP_PIPELINED_STREAM_H_
6 #define NET_HTTP_HTTP_PIPELINED_STREAM_H_ 6 #define NET_HTTP_HTTP_PIPELINED_STREAM_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 virtual bool GetLoadTimingInfo( 72 virtual bool GetLoadTimingInfo(
73 LoadTimingInfo* load_timing_info) const OVERRIDE; 73 LoadTimingInfo* load_timing_info) const OVERRIDE;
74 74
75 virtual void GetSSLInfo(SSLInfo* ssl_info) OVERRIDE; 75 virtual void GetSSLInfo(SSLInfo* ssl_info) OVERRIDE;
76 76
77 virtual void GetSSLCertRequestInfo( 77 virtual void GetSSLCertRequestInfo(
78 SSLCertRequestInfo* cert_request_info) OVERRIDE; 78 SSLCertRequestInfo* cert_request_info) OVERRIDE;
79 79
80 virtual bool IsSpdyHttpStream() const OVERRIDE; 80 virtual bool IsSpdyHttpStream() const OVERRIDE;
81 81
82 virtual void LogNumRttVsBytesMetrics() const OVERRIDE;
83
84 virtual void Drain(HttpNetworkSession* session) OVERRIDE; 82 virtual void Drain(HttpNetworkSession* session) OVERRIDE;
85 83
86 // The SSLConfig used to establish this stream's pipeline. 84 // The SSLConfig used to establish this stream's pipeline.
87 const SSLConfig& used_ssl_config() const; 85 const SSLConfig& used_ssl_config() const;
88 86
89 // The ProxyInfo used to establish this this stream's pipeline. 87 // The ProxyInfo used to establish this this stream's pipeline.
90 const ProxyInfo& used_proxy_info() const; 88 const ProxyInfo& used_proxy_info() const;
91 89
92 // The BoundNetLog of this stream's pipelined connection. 90 // The BoundNetLog of this stream's pipelined connection.
93 const BoundNetLog& net_log() const; 91 const BoundNetLog& net_log() const;
(...skipping 10 matching lines...) Expand all
104 int pipeline_id_; 102 int pipeline_id_;
105 103
106 const HttpRequestInfo* request_info_; 104 const HttpRequestInfo* request_info_;
107 105
108 DISALLOW_COPY_AND_ASSIGN(HttpPipelinedStream); 106 DISALLOW_COPY_AND_ASSIGN(HttpPipelinedStream);
109 }; 107 };
110 108
111 } // namespace net 109 } // namespace net
112 110
113 #endif // NET_HTTP_HTTP_PIPELINED_STREAM_H_ 111 #endif // NET_HTTP_HTTP_PIPELINED_STREAM_H_
OLDNEW
« no previous file with comments | « net/http/http_network_transaction_spdy3_unittest.cc ('k') | net/http/http_pipelined_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698