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

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

Issue 2253203002: Misc cleanup. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
« no previous file with comments | « net/http/http_stream_factory_impl_job.h ('k') | net/spdy/spdy_network_transaction_unittest.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 <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after
379 class CertVerifierJob; 379 class CertVerifierJob;
380 friend class test::QuicStreamFactoryPeer; 380 friend class test::QuicStreamFactoryPeer;
381 FRIEND_TEST_ALL_PREFIXES(HttpStreamFactoryTest, QuicLossyProxyMarkedAsBad); 381 FRIEND_TEST_ALL_PREFIXES(HttpStreamFactoryTest, QuicLossyProxyMarkedAsBad);
382 382
383 typedef std::map<QuicServerId, QuicChromiumClientSession*> SessionMap; 383 typedef std::map<QuicServerId, QuicChromiumClientSession*> SessionMap;
384 typedef std::map<QuicChromiumClientSession*, QuicSessionKey> SessionIdMap; 384 typedef std::map<QuicChromiumClientSession*, QuicSessionKey> SessionIdMap;
385 typedef std::set<QuicSessionKey> AliasSet; 385 typedef std::set<QuicSessionKey> AliasSet;
386 typedef std::map<QuicChromiumClientSession*, AliasSet> SessionAliasMap; 386 typedef std::map<QuicChromiumClientSession*, AliasSet> SessionAliasMap;
387 typedef std::set<QuicChromiumClientSession*> SessionSet; 387 typedef std::set<QuicChromiumClientSession*> SessionSet;
388 typedef std::map<IPEndPoint, SessionSet> IPAliasMap; 388 typedef std::map<IPEndPoint, SessionSet> IPAliasMap;
389 typedef std::map<QuicServerId, QuicCryptoClientConfig*> CryptoConfigMap;
390 typedef std::set<Job*> JobSet; 389 typedef std::set<Job*> JobSet;
391 typedef std::map<QuicServerId, JobSet> JobMap; 390 typedef std::map<QuicServerId, JobSet> JobMap;
392 typedef std::map<QuicStreamRequest*, QuicServerId> RequestMap; 391 typedef std::map<QuicStreamRequest*, QuicServerId> RequestMap;
393 typedef std::set<QuicStreamRequest*> RequestSet; 392 typedef std::set<QuicStreamRequest*> RequestSet;
394 typedef std::map<QuicServerId, RequestSet> ServerIDRequestsMap; 393 typedef std::map<QuicServerId, RequestSet> ServerIDRequestsMap;
395 typedef std::deque<enum QuicChromiumClientSession::QuicDisabledReason> 394 typedef std::deque<enum QuicChromiumClientSession::QuicDisabledReason>
396 DisabledReasonsQueue; 395 DisabledReasonsQueue;
397 typedef std::map<QuicServerId, std::unique_ptr<CertVerifierJob>> 396 typedef std::map<QuicServerId, std::unique_ptr<CertVerifierJob>>
398 CertVerifierJobMap; 397 CertVerifierJobMap;
399 398
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
646 const scoped_refptr<SSLConfigService> ssl_config_service_; 645 const scoped_refptr<SSLConfigService> ssl_config_service_;
647 646
648 base::WeakPtrFactory<QuicStreamFactory> weak_factory_; 647 base::WeakPtrFactory<QuicStreamFactory> weak_factory_;
649 648
650 DISALLOW_COPY_AND_ASSIGN(QuicStreamFactory); 649 DISALLOW_COPY_AND_ASSIGN(QuicStreamFactory);
651 }; 650 };
652 651
653 } // namespace net 652 } // namespace net
654 653
655 #endif // NET_QUIC_QUIC_STREAM_FACTORY_H_ 654 #endif // NET_QUIC_QUIC_STREAM_FACTORY_H_
OLDNEW
« no previous file with comments | « net/http/http_stream_factory_impl_job.h ('k') | net/spdy/spdy_network_transaction_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698