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

Side by Side Diff: net/quic/crypto/quic_compressed_certs_cache.h

Issue 1825273002: Add more out of line copy ctors for complex classes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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_CRYPTO_QUIC_COMPRESSED_CERTS_CACHE_H_ 5 #ifndef NET_QUIC_CRYPTO_QUIC_COMPRESSED_CERTS_CACHE_H_
6 #define NET_QUIC_CRYPTO_QUIC_COMPRESSED_CERTS_CACHE_H_ 6 #define NET_QUIC_CRYPTO_QUIC_COMPRESSED_CERTS_CACHE_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 }; 67 };
68 68
69 // Certs stored by QuicCompressedCertsCache where uncompressed certs data is 69 // Certs stored by QuicCompressedCertsCache where uncompressed certs data is
70 // used to identify the uncompressed representation of certs and 70 // used to identify the uncompressed representation of certs and
71 // |compressed_cert| is the cached compressed representation. 71 // |compressed_cert| is the cached compressed representation.
72 class CachedCerts { 72 class CachedCerts {
73 public: 73 public:
74 CachedCerts(); 74 CachedCerts();
75 CachedCerts(const UncompressedCerts& uncompressed_certs, 75 CachedCerts(const UncompressedCerts& uncompressed_certs,
76 const string& compressed_cert); 76 const string& compressed_cert);
77 CachedCerts(const CachedCerts& other);
77 78
78 ~CachedCerts(); 79 ~CachedCerts();
79 80
80 // Returns true if the |uncompressed_certs| matches uncompressed 81 // Returns true if the |uncompressed_certs| matches uncompressed
81 // representation of this cert. 82 // representation of this cert.
82 bool MatchesUncompressedCerts( 83 bool MatchesUncompressedCerts(
83 const UncompressedCerts& uncompressed_certs) const; 84 const UncompressedCerts& uncompressed_certs) const;
84 85
85 const string* compressed_cert() const; 86 const string* compressed_cert() const;
86 87
(...skipping 13 matching lines...) Expand all
100 101
101 // Key is a unit64_t hash for UncompressedCerts. Stored associated value is 102 // Key is a unit64_t hash for UncompressedCerts. Stored associated value is
102 // CachedCerts which has both original uncompressed certs data and the 103 // CachedCerts which has both original uncompressed certs data and the
103 // compressed representation of the certs. 104 // compressed representation of the certs.
104 base::MRUCache<uint64_t, CachedCerts> certs_cache_; 105 base::MRUCache<uint64_t, CachedCerts> certs_cache_;
105 }; 106 };
106 107
107 } // namespace net 108 } // namespace net
108 109
109 #endif // NET_QUIC_CRYPTO_QUIC_COMPRESSED_CERTS_CACHE_H_ 110 #endif // NET_QUIC_CRYPTO_QUIC_COMPRESSED_CERTS_CACHE_H_
OLDNEW
« no previous file with comments | « net/cookies/cookie_monster_store_test.cc ('k') | net/quic/crypto/quic_compressed_certs_cache.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698