Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(710)

Side by Side Diff: net/quic/quic_stream_factory.h

Issue 425803014: Refactor pooling logic into a helper method (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix test Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/quic/quic_http_stream_test.cc ('k') | net/quic/quic_stream_factory.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 const scoped_ptr<QuicServerInfo>& server_info); 231 const scoped_ptr<QuicServerInfo>& server_info);
232 232
233 void ProcessGoingAwaySession(QuicClientSession* session, 233 void ProcessGoingAwaySession(QuicClientSession* session,
234 const QuicServerId& server_id, 234 const QuicServerId& server_id,
235 bool was_session_active); 235 bool was_session_active);
236 236
237 bool require_confirmation_; 237 bool require_confirmation_;
238 HostResolver* host_resolver_; 238 HostResolver* host_resolver_;
239 ClientSocketFactory* client_socket_factory_; 239 ClientSocketFactory* client_socket_factory_;
240 base::WeakPtr<HttpServerProperties> http_server_properties_; 240 base::WeakPtr<HttpServerProperties> http_server_properties_;
241 TransportSecurityState* transport_security_state_;
241 QuicServerInfoFactory* quic_server_info_factory_; 242 QuicServerInfoFactory* quic_server_info_factory_;
242 QuicCryptoClientStreamFactory* quic_crypto_client_stream_factory_; 243 QuicCryptoClientStreamFactory* quic_crypto_client_stream_factory_;
243 QuicRandom* random_generator_; 244 QuicRandom* random_generator_;
244 scoped_ptr<QuicClock> clock_; 245 scoped_ptr<QuicClock> clock_;
245 const size_t max_packet_length_; 246 const size_t max_packet_length_;
246 247
247 // The helper used for all connections. 248 // The helper used for all connections.
248 scoped_ptr<QuicConnectionHelper> helper_; 249 scoped_ptr<QuicConnectionHelper> helper_;
249 250
250 // Contains owning pointers to all sessions that currently exist. 251 // Contains owning pointers to all sessions that currently exist.
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 uint64 port_seed_; 284 uint64 port_seed_;
284 285
285 base::WeakPtrFactory<QuicStreamFactory> weak_factory_; 286 base::WeakPtrFactory<QuicStreamFactory> weak_factory_;
286 287
287 DISALLOW_COPY_AND_ASSIGN(QuicStreamFactory); 288 DISALLOW_COPY_AND_ASSIGN(QuicStreamFactory);
288 }; 289 };
289 290
290 } // namespace net 291 } // namespace net
291 292
292 #endif // NET_QUIC_QUIC_STREAM_FACTORY_H_ 293 #endif // NET_QUIC_QUIC_STREAM_FACTORY_H_
OLDNEW
« no previous file with comments | « net/quic/quic_http_stream_test.cc ('k') | net/quic/quic_stream_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698