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

Unified Diff: net/ssl/signed_certificate_timestamp_and_status.cc

Issue 115013004: Certificate Transparency: Cleanup: Correct the naming of the struct fields. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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 | « net/ssl/signed_certificate_timestamp_and_status.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/ssl/signed_certificate_timestamp_and_status.cc
diff --git a/net/ssl/signed_certificate_timestamp_and_status.cc b/net/ssl/signed_certificate_timestamp_and_status.cc
index 2808fec3e4d69a19cb8d4c8b6df25150917c724f..245fcf2ac2eab4dd46093440df25125af732ca9e 100644
--- a/net/ssl/signed_certificate_timestamp_and_status.cc
+++ b/net/ssl/signed_certificate_timestamp_and_status.cc
@@ -11,7 +11,7 @@ namespace net {
SignedCertificateTimestampAndStatus::SignedCertificateTimestampAndStatus(
const scoped_refptr<ct::SignedCertificateTimestamp>& sct,
const ct::SCTVerifyStatus status)
- : sct_(sct), status_(status) {}
+ : sct(sct), status(status) {}
SignedCertificateTimestampAndStatus::~SignedCertificateTimestampAndStatus() {}
« no previous file with comments | « net/ssl/signed_certificate_timestamp_and_status.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698