| 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 <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 // (not going away session, once they're implemented). | 147 // (not going away session, once they're implemented). |
| 148 SessionMap active_sessions_; | 148 SessionMap active_sessions_; |
| 149 SessionAliasMap session_aliases_; | 149 SessionAliasMap session_aliases_; |
| 150 | 150 |
| 151 // Contains owning pointers to QuicCryptoClientConfig. QuicCryptoClientConfig | 151 // Contains owning pointers to QuicCryptoClientConfig. QuicCryptoClientConfig |
| 152 // contains configuration and cached state about servers. | 152 // contains configuration and cached state about servers. |
| 153 // TODO(rtenneti): Persist all_crypto_configs_ to disk and decide when to | 153 // TODO(rtenneti): Persist all_crypto_configs_ to disk and decide when to |
| 154 // clear the data in the map. | 154 // clear the data in the map. |
| 155 CryptoConfigMap all_crypto_configs_; | 155 CryptoConfigMap all_crypto_configs_; |
| 156 | 156 |
| 157 QuicConfig config_; |
| 158 |
| 157 JobMap active_jobs_; | 159 JobMap active_jobs_; |
| 158 JobRequestsMap job_requests_map_; | 160 JobRequestsMap job_requests_map_; |
| 159 RequestMap active_requests_; | 161 RequestMap active_requests_; |
| 160 | 162 |
| 161 base::WeakPtrFactory<QuicStreamFactory> weak_factory_; | 163 base::WeakPtrFactory<QuicStreamFactory> weak_factory_; |
| 162 | 164 |
| 163 DISALLOW_COPY_AND_ASSIGN(QuicStreamFactory); | 165 DISALLOW_COPY_AND_ASSIGN(QuicStreamFactory); |
| 164 }; | 166 }; |
| 165 | 167 |
| 166 } // namespace net | 168 } // namespace net |
| 167 | 169 |
| 168 #endif // NET_QUIC_QUIC_STREAM_FACTORY_H_ | 170 #endif // NET_QUIC_QUIC_STREAM_FACTORY_H_ |
| OLD | NEW |