Index: net/socket/ssl_error_params.cc |
diff --git a/net/socket/ssl_error_params.cc b/net/socket/ssl_error_params.cc |
index c77cbec273b3fb81197fdfd742d3d7337ddeae59..d3de5962e0b14f71919aa66b3b5c64b2abbf02ae 100644 |
--- a/net/socket/ssl_error_params.cc |
+++ b/net/socket/ssl_error_params.cc |
@@ -9,9 +9,9 @@ |
namespace net { |
SSLErrorParams::SSLErrorParams(int net_error, int ssl_lib_error) |
- : net_error_(net_error), ssl_lib_error_(ssl_lib_error) {} |
- |
-SSLErrorParams::~SSLErrorParams() {} |
+ : net_error_(net_error), |
+ ssl_lib_error_(ssl_lib_error) { |
+} |
Value* SSLErrorParams::ToValue() const { |
DictionaryValue* dict = new DictionaryValue(); |
@@ -21,4 +21,6 @@ Value* SSLErrorParams::ToValue() const { |
return dict; |
} |
+SSLErrorParams::~SSLErrorParams() {} |
+ |
} // namespace net |