Index: runtime/bin/secure_socket_ios.h |
diff --git a/runtime/bin/secure_socket_ios.h b/runtime/bin/secure_socket_ios.h |
index 84e46e157bf2c723c99e9a6b2d02077a8fc68dfc..8a59cb700d740b05660797db911f084163871930 100644 |
--- a/runtime/bin/secure_socket_ios.h |
+++ b/runtime/bin/secure_socket_ios.h |
@@ -35,13 +35,13 @@ namespace bin { |
// thread. Setters return false if the field was already set. |
class SSLCertContext : public ReferenceCounted<SSLCertContext> { |
public: |
- SSLCertContext() : |
- ReferenceCounted(), |
- mutex_(new Mutex()), |
- trusted_certs_(NULL), |
- identity_(NULL), |
- cert_chain_(NULL), |
- trust_builtin_(false) {} |
+ SSLCertContext() |
+ : ReferenceCounted(), |
+ mutex_(new Mutex()), |
+ trusted_certs_(NULL), |
+ identity_(NULL), |
+ cert_chain_(NULL), |
+ trust_builtin_(false) {} |
~SSLCertContext() { |
{ |
@@ -150,8 +150,7 @@ class SSLFilter : public ReferenceCounted<SSLFilter> { |
connected_(false), |
bad_cert_(false), |
is_server_(false), |
- hostname_(NULL) { |
- } |
+ hostname_(NULL) {} |
~SSLFilter(); |