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

Unified Diff: net/quic/crypto/proof_verifier_chromium.h

Issue 456953002: Also declare the transport_security_state_ member as const. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/crypto/proof_verifier_chromium.h
diff --git a/net/quic/crypto/proof_verifier_chromium.h b/net/quic/crypto/proof_verifier_chromium.h
index 2c64808c5f94b2ae5d0e3acfe047c4ea5998f470..7b305e2605f4879c00d0638aa9aa4177f3afd3c3 100644
--- a/net/quic/crypto/proof_verifier_chromium.h
+++ b/net/quic/crypto/proof_verifier_chromium.h
@@ -81,7 +81,7 @@ class NET_EXPORT_PRIVATE ProofVerifierChromium : public ProofVerifier {
// Underlying verifier used to verify certificates.
CertVerifier* const cert_verifier_;
wtc 2014/08/08 21:59:17 I noticed that the cert_verifier_ member is const,
Ryan Hamilton 2014/08/08 22:08:22 This means that the pointer never changes, but the
wtc 2014/08/13 18:37:35 That's correct.
- TransportSecurityState* transport_security_state_;
+ TransportSecurityState* const transport_security_state_;
DISALLOW_COPY_AND_ASSIGN(ProofVerifierChromium);
};
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698