Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(264)

Unified Diff: net/socket/ssl_error_params.cc

Issue 10066045: RefCounted types should not have public destructors, net/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Deprecated cookiestore fix Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/socket/ssl_error_params.h ('k') | net/spdy/spdy_session.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « net/socket/ssl_error_params.h ('k') | net/spdy/spdy_session.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698