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()); |
} |
} |