| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |