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

Unified Diff: net/ssl/server_bound_cert_store.cc

Issue 266243004: Clang format slam. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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
Index: net/ssl/server_bound_cert_store.cc
diff --git a/net/ssl/server_bound_cert_store.cc b/net/ssl/server_bound_cert_store.cc
index e778362c0bac0c6a46d1f50bde18be7e52c555ec..18c4decae52fdd6ff4f4d9a7f1eb081a234db18e 100644
--- a/net/ssl/server_bound_cert_store.cc
+++ b/net/ssl/server_bound_cert_store.cc
@@ -19,15 +19,20 @@ ServerBoundCertStore::ServerBoundCert::ServerBoundCert(
creation_time_(creation_time),
expiration_time_(expiration_time),
private_key_(private_key),
- cert_(cert) {}
+ cert_(cert) {
+}
-ServerBoundCertStore::ServerBoundCert::~ServerBoundCert() {}
+ServerBoundCertStore::ServerBoundCert::~ServerBoundCert() {
+}
void ServerBoundCertStore::InitializeFrom(const ServerBoundCertList& list) {
for (ServerBoundCertList::const_iterator i = list.begin(); i != list.end();
- ++i) {
- SetServerBoundCert(i->server_identifier(), i->creation_time(),
- i->expiration_time(), i->private_key(), i->cert());
+ ++i) {
+ SetServerBoundCert(i->server_identifier(),
+ i->creation_time(),
+ i->expiration_time(),
+ i->private_key(),
+ i->cert());
}
}

Powered by Google App Engine
This is Rietveld 408576698