| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #include "net/http/http_pipelined_stream.h" | 5 #include "net/http/http_pipelined_stream.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "base/stringprintf.h" | 8 #include "base/stringprintf.h" |
| 9 #include "net/base/net_errors.h" | 9 #include "net/base/net_errors.h" |
| 10 #include "net/http/http_pipelined_connection_impl.h" | 10 #include "net/http/http_pipelined_connection_impl.h" |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 } | 131 } |
| 132 | 132 |
| 133 const BoundNetLog& HttpPipelinedStream::net_log() const { | 133 const BoundNetLog& HttpPipelinedStream::net_log() const { |
| 134 return pipeline_->net_log(); | 134 return pipeline_->net_log(); |
| 135 } | 135 } |
| 136 | 136 |
| 137 bool HttpPipelinedStream::was_npn_negotiated() const { | 137 bool HttpPipelinedStream::was_npn_negotiated() const { |
| 138 return pipeline_->was_npn_negotiated(); | 138 return pipeline_->was_npn_negotiated(); |
| 139 } | 139 } |
| 140 | 140 |
| 141 SSLClientSocket::NextProto HttpPipelinedStream::protocol_negotiated() const { | 141 NextProto HttpPipelinedStream::protocol_negotiated() const { |
| 142 return pipeline_->protocol_negotiated(); | 142 return pipeline_->protocol_negotiated(); |
| 143 } | 143 } |
| 144 | 144 |
| 145 } // namespace net | 145 } // namespace net |
| OLD | NEW |