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

Unified Diff: net/base/tcp_listen_socket.h

Issue 10388186: RefCounted types should not have public destructors (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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 | « content/renderer/pepper/pepper_hung_plugin_filter.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/tcp_listen_socket.h
diff --git a/net/base/tcp_listen_socket.h b/net/base/tcp_listen_socket.h
index da7b51fbcd303a57daffe472e6899100d9f2cb2c..0e42299431ae01248bc75dd80946b483e933b47c 100644
--- a/net/base/tcp_listen_socket.h
+++ b/net/base/tcp_listen_socket.h
@@ -23,10 +23,9 @@ class NET_EXPORT TCPListenSocket : public StreamListenSocket {
static scoped_refptr<TCPListenSocket> CreateAndListen(
const std::string& ip, int port, StreamListenSocket::Delegate* del);
- virtual ~TCPListenSocket();
-
protected:
TCPListenSocket(SOCKET s, StreamListenSocket::Delegate* del);
+ virtual ~TCPListenSocket();
static SOCKET CreateAndBind(const std::string& ip, int port);
« no previous file with comments | « content/renderer/pepper/pepper_hung_plugin_filter.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698