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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/renderer/pepper/pepper_hung_plugin_filter.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef NET_BASE_TCP_LISTEN_SOCKET_H_ 5 #ifndef NET_BASE_TCP_LISTEN_SOCKET_H_
6 #define NET_BASE_TCP_LISTEN_SOCKET_H_ 6 #define NET_BASE_TCP_LISTEN_SOCKET_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
11 #include "base/basictypes.h" 11 #include "base/basictypes.h"
12 #include "base/memory/ref_counted.h" 12 #include "base/memory/ref_counted.h"
13 #include "net/base/net_export.h" 13 #include "net/base/net_export.h"
14 #include "net/base/stream_listen_socket.h" 14 #include "net/base/stream_listen_socket.h"
15 15
16 namespace net { 16 namespace net {
17 17
18 // Implements a TCP socket. Note that this is ref counted. 18 // Implements a TCP socket. Note that this is ref counted.
19 class NET_EXPORT TCPListenSocket : public StreamListenSocket { 19 class NET_EXPORT TCPListenSocket : public StreamListenSocket {
20 public: 20 public:
21 // Listen on port for the specified IP address. Use 127.0.0.1 to only 21 // Listen on port for the specified IP address. Use 127.0.0.1 to only
22 // accept local connections. 22 // accept local connections.
23 static scoped_refptr<TCPListenSocket> CreateAndListen( 23 static scoped_refptr<TCPListenSocket> CreateAndListen(
24 const std::string& ip, int port, StreamListenSocket::Delegate* del); 24 const std::string& ip, int port, StreamListenSocket::Delegate* del);
25 25
26 virtual ~TCPListenSocket();
27
28 protected: 26 protected:
29 TCPListenSocket(SOCKET s, StreamListenSocket::Delegate* del); 27 TCPListenSocket(SOCKET s, StreamListenSocket::Delegate* del);
28 virtual ~TCPListenSocket();
30 29
31 static SOCKET CreateAndBind(const std::string& ip, int port); 30 static SOCKET CreateAndBind(const std::string& ip, int port);
32 31
33 // Implements StreamListenSocket::Accept. 32 // Implements StreamListenSocket::Accept.
34 virtual void Accept() OVERRIDE; 33 virtual void Accept() OVERRIDE;
35 34
36 private: 35 private:
37 DISALLOW_COPY_AND_ASSIGN(TCPListenSocket); 36 DISALLOW_COPY_AND_ASSIGN(TCPListenSocket);
38 }; 37 };
39 38
40 } // namespace net 39 } // namespace net
41 40
42 #endif // NET_BASE_TCP_LISTEN_SOCKET_H_ 41 #endif // NET_BASE_TCP_LISTEN_SOCKET_H_
OLDNEW
« 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