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

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

Issue 2807493002: Track STL containers in QuicStreamFactory::DumpMemoryStats (Closed)
Patch Set: address zhongyi@ comment Created 3 years, 8 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/quic/chromium/quic_server_info.h ('k') | net/quic/chromium/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_CHROMIUM_QUIC_STREAM_FACTORY_H_ 5 #ifndef NET_QUIC_CHROMIUM_QUIC_STREAM_FACTORY_H_
6 #define NET_QUIC_CHROMIUM_QUIC_STREAM_FACTORY_H_ 6 #define NET_QUIC_CHROMIUM_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 546 matching lines...) Expand 10 before | Expand all | Expand 10 after
557 // Origins which have gone away recently. 557 // Origins which have gone away recently.
558 AliasSet gone_away_aliases_; 558 AliasSet gone_away_aliases_;
559 559
560 const QuicConfig config_; 560 const QuicConfig config_;
561 QuicCryptoClientConfig crypto_config_; 561 QuicCryptoClientConfig crypto_config_;
562 562
563 JobMap active_jobs_; 563 JobMap active_jobs_;
564 // Map from QuicServerId to a set of non-owning QuicStreamRequest pointers. 564 // Map from QuicServerId to a set of non-owning QuicStreamRequest pointers.
565 ServerIDRequestsMap job_requests_map_; 565 ServerIDRequestsMap job_requests_map_;
566 566
567 // Map of QuicServerId to owning CertVerifierJob.
567 CertVerifierJobMap active_cert_verifier_jobs_; 568 CertVerifierJobMap active_cert_verifier_jobs_;
568 569
569 QuicVersionVector supported_versions_; 570 const QuicVersionVector supported_versions_;
570 571
571 // Set if we always require handshake confirmation. If true, this will 572 // Set if we always require handshake confirmation. If true, this will
572 // introduce at least one RTT for the handshake before the client sends data. 573 // introduce at least one RTT for the handshake before the client sends data.
573 bool always_require_handshake_confirmation_; 574 bool always_require_handshake_confirmation_;
574 575
575 // Set if we do not want connection pooling. 576 // Set if we do not want connection pooling.
576 bool disable_connection_pooling_; 577 bool disable_connection_pooling_;
577 578
578 // Specifies the ratio between time to load QUIC server information from disk 579 // Specifies the ratio between time to load QUIC server information from disk
579 // cache to 'smoothed RTT'. This ratio is used to calculate the timeout in 580 // cache to 'smoothed RTT'. This ratio is used to calculate the timeout in
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
659 const scoped_refptr<SSLConfigService> ssl_config_service_; 660 const scoped_refptr<SSLConfigService> ssl_config_service_;
660 661
661 base::WeakPtrFactory<QuicStreamFactory> weak_factory_; 662 base::WeakPtrFactory<QuicStreamFactory> weak_factory_;
662 663
663 DISALLOW_COPY_AND_ASSIGN(QuicStreamFactory); 664 DISALLOW_COPY_AND_ASSIGN(QuicStreamFactory);
664 }; 665 };
665 666
666 } // namespace net 667 } // namespace net
667 668
668 #endif // NET_QUIC_CHROMIUM_QUIC_STREAM_FACTORY_H_ 669 #endif // NET_QUIC_CHROMIUM_QUIC_STREAM_FACTORY_H_
OLDNEW
« no previous file with comments | « net/quic/chromium/quic_server_info.h ('k') | net/quic/chromium/quic_stream_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698