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

Unified Diff: net/base/telnet_server.h

Issue 368001: Second patch in making destructors of refcounted objects private. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 1 month 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
Index: net/base/telnet_server.h
===================================================================
--- net/base/telnet_server.h (revision 31079)
+++ net/base/telnet_server.h (working copy)
@@ -14,7 +14,6 @@
public:
static TelnetServer* Listen(std::string ip, int port,
ListenSocketDelegate *del);
- virtual ~TelnetServer();
protected:
void Listen() { ListenSocket::Listen(); }
@@ -45,6 +44,7 @@
};
TelnetServer(SOCKET s, ListenSocketDelegate* del);
+ virtual ~TelnetServer();
// telnet commands
void SendIAC(int command, int option);

Powered by Google App Engine
This is Rietveld 408576698