| 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_STREAM_FACTORY_IMPL_H_ | 5 #ifndef NET_HTTP_HTTP_STREAM_FACTORY_IMPL_H_ |
| 6 #define NET_HTTP_HTTP_STREAM_FACTORY_IMPL_H_ | 6 #define NET_HTTP_HTTP_STREAM_FACTORY_IMPL_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 | 68 |
| 69 HttpStreamRequest* RequestStreamInternal( | 69 HttpStreamRequest* RequestStreamInternal( |
| 70 const HttpRequestInfo& info, | 70 const HttpRequestInfo& info, |
| 71 RequestPriority priority, | 71 RequestPriority priority, |
| 72 const SSLConfig& server_ssl_config, | 72 const SSLConfig& server_ssl_config, |
| 73 const SSLConfig& proxy_ssl_config, | 73 const SSLConfig& proxy_ssl_config, |
| 74 HttpStreamRequest::Delegate* delegate, | 74 HttpStreamRequest::Delegate* delegate, |
| 75 WebSocketHandshakeStreamBase::CreateHelper* create_helper, | 75 WebSocketHandshakeStreamBase::CreateHelper* create_helper, |
| 76 const BoundNetLog& net_log); | 76 const BoundNetLog& net_log); |
| 77 | 77 |
| 78 AlternateProtocolInfo GetAlternateProtocolRequestFor( | 78 AlternateProtocolInfo GetAlternateProtocolRequestFor(const GURL& original_url, |
| 79 const GURL& original_url, | 79 int load_flags, |
| 80 GURL* alternate_url); | 80 GURL* alternate_url); |
| 81 | 81 |
| 82 // Detaches |job| from |request|. | 82 // Detaches |job| from |request|. |
| 83 void OrphanJob(Job* job, const Request* request); | 83 void OrphanJob(Job* job, const Request* request); |
| 84 | 84 |
| 85 // Called when a SpdySession is ready. It will find appropriate Requests and | 85 // Called when a SpdySession is ready. It will find appropriate Requests and |
| 86 // fulfill them. |direct| indicates whether or not |spdy_session| uses a | 86 // fulfill them. |direct| indicates whether or not |spdy_session| uses a |
| 87 // proxy. | 87 // proxy. |
| 88 void OnNewSpdySessionReady(const base::WeakPtr<SpdySession>& spdy_session, | 88 void OnNewSpdySessionReady(const base::WeakPtr<SpdySession>& spdy_session, |
| 89 bool direct, | 89 bool direct, |
| 90 const SSLConfig& used_ssl_config, | 90 const SSLConfig& used_ssl_config, |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 // deleted when the factory is destroyed. | 129 // deleted when the factory is destroyed. |
| 130 std::set<const Job*> preconnect_job_set_; | 130 std::set<const Job*> preconnect_job_set_; |
| 131 | 131 |
| 132 const bool for_websockets_; | 132 const bool for_websockets_; |
| 133 DISALLOW_COPY_AND_ASSIGN(HttpStreamFactoryImpl); | 133 DISALLOW_COPY_AND_ASSIGN(HttpStreamFactoryImpl); |
| 134 }; | 134 }; |
| 135 | 135 |
| 136 } // namespace net | 136 } // namespace net |
| 137 | 137 |
| 138 #endif // NET_HTTP_HTTP_STREAM_FACTORY_IMPL_H_ | 138 #endif // NET_HTTP_HTTP_STREAM_FACTORY_IMPL_H_ |
| OLD | NEW |