| 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_QUIC_QUIC_STREAM_FACTORY_H_ | 5 #ifndef NET_QUIC_QUIC_STREAM_FACTORY_H_ |
| 6 #define NET_QUIC_QUIC_STREAM_FACTORY_H_ | 6 #define NET_QUIC_QUIC_STREAM_FACTORY_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 const scoped_ptr<QuicServerInfo>& server_info); | 230 const scoped_ptr<QuicServerInfo>& server_info); |
| 231 | 231 |
| 232 void ProcessGoingAwaySession(QuicClientSession* session, | 232 void ProcessGoingAwaySession(QuicClientSession* session, |
| 233 const QuicServerId& server_id, | 233 const QuicServerId& server_id, |
| 234 bool was_session_active); | 234 bool was_session_active); |
| 235 | 235 |
| 236 bool require_confirmation_; | 236 bool require_confirmation_; |
| 237 HostResolver* host_resolver_; | 237 HostResolver* host_resolver_; |
| 238 ClientSocketFactory* client_socket_factory_; | 238 ClientSocketFactory* client_socket_factory_; |
| 239 base::WeakPtr<HttpServerProperties> http_server_properties_; | 239 base::WeakPtr<HttpServerProperties> http_server_properties_; |
| 240 TransportSecurityState* transport_security_state_; | |
| 241 QuicServerInfoFactory* quic_server_info_factory_; | 240 QuicServerInfoFactory* quic_server_info_factory_; |
| 242 QuicCryptoClientStreamFactory* quic_crypto_client_stream_factory_; | 241 QuicCryptoClientStreamFactory* quic_crypto_client_stream_factory_; |
| 243 QuicRandom* random_generator_; | 242 QuicRandom* random_generator_; |
| 244 scoped_ptr<QuicClock> clock_; | 243 scoped_ptr<QuicClock> clock_; |
| 245 const size_t max_packet_length_; | 244 const size_t max_packet_length_; |
| 246 | 245 |
| 247 // The helper used for all connections. | 246 // The helper used for all connections. |
| 248 scoped_ptr<QuicConnectionHelper> helper_; | 247 scoped_ptr<QuicConnectionHelper> helper_; |
| 249 | 248 |
| 250 // Contains owning pointers to all sessions that currently exist. | 249 // Contains owning pointers to all sessions that currently exist. |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 283 uint64 port_seed_; | 282 uint64 port_seed_; |
| 284 | 283 |
| 285 base::WeakPtrFactory<QuicStreamFactory> weak_factory_; | 284 base::WeakPtrFactory<QuicStreamFactory> weak_factory_; |
| 286 | 285 |
| 287 DISALLOW_COPY_AND_ASSIGN(QuicStreamFactory); | 286 DISALLOW_COPY_AND_ASSIGN(QuicStreamFactory); |
| 288 }; | 287 }; |
| 289 | 288 |
| 290 } // namespace net | 289 } // namespace net |
| 291 | 290 |
| 292 #endif // NET_QUIC_QUIC_STREAM_FACTORY_H_ | 291 #endif // NET_QUIC_QUIC_STREAM_FACTORY_H_ |
| OLD | NEW |