| 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_HOST_FORCED_H_ | 5 #ifndef NET_HTTP_HTTP_PIPELINED_HOST_FORCED_H_ |
| 6 #define NET_HTTP_HTTP_PIPELINED_HOST_FORCED_H_ | 6 #define NET_HTTP_HTTP_PIPELINED_HOST_FORCED_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 HttpPipelinedConnection::Factory* factory); | 40 HttpPipelinedConnection::Factory* factory); |
| 41 virtual ~HttpPipelinedHostForced(); | 41 virtual ~HttpPipelinedHostForced(); |
| 42 | 42 |
| 43 // HttpPipelinedHost interface | 43 // HttpPipelinedHost interface |
| 44 virtual HttpPipelinedStream* CreateStreamOnNewPipeline( | 44 virtual HttpPipelinedStream* CreateStreamOnNewPipeline( |
| 45 ClientSocketHandle* connection, | 45 ClientSocketHandle* connection, |
| 46 const SSLConfig& used_ssl_config, | 46 const SSLConfig& used_ssl_config, |
| 47 const ProxyInfo& used_proxy_info, | 47 const ProxyInfo& used_proxy_info, |
| 48 const BoundNetLog& net_log, | 48 const BoundNetLog& net_log, |
| 49 bool was_npn_negotiated, | 49 bool was_npn_negotiated, |
| 50 SSLClientSocket::NextProto protocol_negotiated) OVERRIDE; | 50 NextProto protocol_negotiated) OVERRIDE; |
| 51 | 51 |
| 52 virtual HttpPipelinedStream* CreateStreamOnExistingPipeline() OVERRIDE; | 52 virtual HttpPipelinedStream* CreateStreamOnExistingPipeline() OVERRIDE; |
| 53 | 53 |
| 54 virtual bool IsExistingPipelineAvailable() const OVERRIDE; | 54 virtual bool IsExistingPipelineAvailable() const OVERRIDE; |
| 55 | 55 |
| 56 virtual const Key& GetKey() const OVERRIDE; | 56 virtual const Key& GetKey() const OVERRIDE; |
| 57 | 57 |
| 58 virtual base::Value* PipelineInfoToValue() const OVERRIDE; | 58 virtual base::Value* PipelineInfoToValue() const OVERRIDE; |
| 59 | 59 |
| 60 // HttpPipelinedConnection::Delegate interface | 60 // HttpPipelinedConnection::Delegate interface |
| (...skipping 14 matching lines...) Expand all Loading... |
| 75 const Key key_; | 75 const Key key_; |
| 76 scoped_ptr<HttpPipelinedConnection> pipeline_; | 76 scoped_ptr<HttpPipelinedConnection> pipeline_; |
| 77 scoped_ptr<HttpPipelinedConnection::Factory> factory_; | 77 scoped_ptr<HttpPipelinedConnection::Factory> factory_; |
| 78 | 78 |
| 79 DISALLOW_COPY_AND_ASSIGN(HttpPipelinedHostForced); | 79 DISALLOW_COPY_AND_ASSIGN(HttpPipelinedHostForced); |
| 80 }; | 80 }; |
| 81 | 81 |
| 82 } // namespace net | 82 } // namespace net |
| 83 | 83 |
| 84 #endif // NET_HTTP_HTTP_PIPELINED_HOST_FORCED_H_ | 84 #endif // NET_HTTP_HTTP_PIPELINED_HOST_FORCED_H_ |
| OLD | NEW |