diff options
author | eranm@google.com <eranm@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-08 12:37:08 +0000 |
---|---|---|
committer | eranm@google.com <eranm@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-08 12:37:08 +0000 |
commit | b34f59673f0fb2137804a625d66b3e99a6e21e67 (patch) | |
tree | c06135fd704b61ce16726489857e00c9611163fa /net/ssl | |
parent | b8ac36fe5a2d188c85813d390679b505eb9aec6c (diff) | |
download | chromium_src-b34f59673f0fb2137804a625d66b3e99a6e21e67.zip chromium_src-b34f59673f0fb2137804a625d66b3e99a6e21e67.tar.gz chromium_src-b34f59673f0fb2137804a625d66b3e99a6e21e67.tar.bz2 |
Cleanup: Correct the names of the struct fields.
No functional changes.
BUG=309578
Review URL: https://codereview.chromium.org/115013004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@243535 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/ssl')
-rw-r--r-- | net/ssl/signed_certificate_timestamp_and_status.cc | 2 | ||||
-rw-r--r-- | net/ssl/signed_certificate_timestamp_and_status.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/net/ssl/signed_certificate_timestamp_and_status.cc b/net/ssl/signed_certificate_timestamp_and_status.cc index 2808fec..245fcf2 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() {} diff --git a/net/ssl/signed_certificate_timestamp_and_status.h b/net/ssl/signed_certificate_timestamp_and_status.h index cc89a17..c23753e 100644 --- a/net/ssl/signed_certificate_timestamp_and_status.h +++ b/net/ssl/signed_certificate_timestamp_and_status.h @@ -21,8 +21,8 @@ struct NET_EXPORT SignedCertificateTimestampAndStatus { ~SignedCertificateTimestampAndStatus(); - scoped_refptr<ct::SignedCertificateTimestamp> sct_; - ct::SCTVerifyStatus status_; + scoped_refptr<ct::SignedCertificateTimestamp> sct; + ct::SCTVerifyStatus status; }; typedef std::vector<SignedCertificateTimestampAndStatus> |