Index: net/socket/ssl_error_params.h |
=================================================================== |
--- net/socket/ssl_error_params.h (revision 142108) |
+++ net/socket/ssl_error_params.h (working copy) |
@@ -10,21 +10,10 @@ |
namespace net { |
-// Extra parameters to attach to the NetLog when we receive an SSL error. |
-class SSLErrorParams : public NetLog::EventParameters { |
- public: |
- SSLErrorParams(int net_error, int ssl_lib_error); |
+// Creates NetLog callback for when we receive an SSL error. |
+NetLog::ParametersCallback CreateNetLogSSLErrorCallback(int net_error, |
+ int ssl_lib_error); |
- virtual base::Value* ToValue() const OVERRIDE; |
- |
- protected: |
- virtual ~SSLErrorParams(); |
- |
- private: |
- const int net_error_; |
- const int ssl_lib_error_; |
-}; |
- |
} // namespace net |
#endif // NET_SOCKET_SSL_ERROR_PARAMS_H_ |