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

Unified Diff: net/socket/ssl_error_params.h

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/socket_test_util.cc ('k') | net/socket/ssl_error_params.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/socket/ssl_error_params.h
diff --git a/net/socket/ssl_error_params.h b/net/socket/ssl_error_params.h
index 434d8bcb07e2d216ef9a71d149397f268c86142a..d5cd21c6082767dc528846fdcdf39035d3228f73 100644
--- a/net/socket/ssl_error_params.h
+++ b/net/socket/ssl_error_params.h
@@ -14,10 +14,12 @@ namespace net {
class SSLErrorParams : public NetLog::EventParameters {
public:
SSLErrorParams(int net_error, int ssl_lib_error);
- virtual ~SSLErrorParams();
virtual base::Value* ToValue() const OVERRIDE;
+ protected:
+ virtual ~SSLErrorParams();
+
private:
const int net_error_;
const int ssl_lib_error_;
« no previous file with comments | « net/socket/socket_test_util.cc ('k') | net/socket/ssl_error_params.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698