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

Unified Diff: net/cert/ct_log_verifier_nss.cc

Issue 67073004: Certificate Transparency: Style fixes following review of issue 55953002. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 1 month 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 | net/cert/ct_log_verifier_openssl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/cert/ct_log_verifier_nss.cc
diff --git a/net/cert/ct_log_verifier_nss.cc b/net/cert/ct_log_verifier_nss.cc
index a84223017e74cf8059aae3be9db8421ab57d9ff6..49b6f7339ba5c74327c90555d880e3f8b28ebd5c 100644
--- a/net/cert/ct_log_verifier_nss.cc
+++ b/net/cert/ct_log_verifier_nss.cc
@@ -63,10 +63,10 @@ CTLogVerifier::~CTLogVerifier() {
SECKEY_DestroyPublicKey(public_key_);
}
-CTLogVerifier::CTLogVerifier() :
- hash_algorithm_(ct::DigitallySigned::HASH_ALGO_NONE),
- signature_algorithm_(ct::DigitallySigned::SIG_ALGO_ANONYMOUS),
- public_key_(NULL) {}
+CTLogVerifier::CTLogVerifier()
+ : hash_algorithm_(ct::DigitallySigned::HASH_ALGO_NONE),
+ signature_algorithm_(ct::DigitallySigned::SIG_ALGO_ANONYMOUS),
+ public_key_(NULL) {}
bool CTLogVerifier::Init(const base::StringPiece& public_key,
const base::StringPiece& description) {
@@ -108,8 +108,8 @@ bool CTLogVerifier::Init(const base::StringPiece& public_key,
signature_algorithm_ = ct::DigitallySigned::SIG_ALGO_ECDSA;
break;
default:
- DVLOG(1) << "Unsupported key type: " <<
- SECKEY_GetPublicKeyType(public_key_);
+ DVLOG(1) << "Unsupported key type: "
+ << SECKEY_GetPublicKeyType(public_key_);
return false;
}
« no previous file with comments | « no previous file | net/cert/ct_log_verifier_openssl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698