Index: runtime/bin/secure_socket_macos.h |
diff --git a/runtime/bin/secure_socket_macos.h b/runtime/bin/secure_socket_macos.h |
index ae8f2e84b9a7ecebfcadf636e8a015139cd529bf..f84cc428cd3cf8a17f1e9961bd24fb667c4881ef 100644 |
--- a/runtime/bin/secure_socket_macos.h |
+++ b/runtime/bin/secure_socket_macos.h |
@@ -35,16 +35,15 @@ namespace bin { |
// thread. Setters return false if the field was already set. |
class SSLCertContext : public ReferenceCounted<SSLCertContext> { |
public: |
- SSLCertContext() : |
- ReferenceCounted(), |
- mutex_(new Mutex()), |
- private_key_(NULL), |
- keychain_(NULL), |
- cert_chain_(NULL), |
- trusted_certs_(NULL), |
- cert_authorities_(NULL), |
- trust_builtin_(false) { |
- } |
+ SSLCertContext() |
+ : ReferenceCounted(), |
+ mutex_(new Mutex()), |
+ private_key_(NULL), |
+ keychain_(NULL), |
+ cert_chain_(NULL), |
+ trusted_certs_(NULL), |
+ cert_authorities_(NULL), |
+ trust_builtin_(false) {} |
~SSLCertContext() { |
{ |
@@ -191,8 +190,7 @@ class SSLFilter : public ReferenceCounted<SSLFilter> { |
connected_(false), |
bad_cert_(false), |
is_server_(false), |
- hostname_(NULL) { |
- } |
+ hostname_(NULL) {} |
~SSLFilter(); |