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

Side by Side Diff: net/socket/unix_domain_server_socket_posix.h

Issue 667923003: Standardize usage of virtual/override/final in net/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_SOCKET_UNIX_DOMAIN_SERVER_SOCKET_POSIX_H_ 5 #ifndef NET_SOCKET_UNIX_DOMAIN_SERVER_SOCKET_POSIX_H_
6 #define NET_SOCKET_UNIX_DOMAIN_SERVER_SOCKET_POSIX_H_ 6 #define NET_SOCKET_UNIX_DOMAIN_SERVER_SOCKET_POSIX_H_
7 7
8 #include <sys/types.h> 8 #include <sys/types.h>
9 9
10 #include <string> 10 #include <string>
(...skipping 26 matching lines...) Expand all
37 gid_t group_id; 37 gid_t group_id;
38 }; 38 };
39 39
40 // Callback that returns whether the already connected client, identified by 40 // Callback that returns whether the already connected client, identified by
41 // its credentials, is allowed to keep the connection open. Note that 41 // its credentials, is allowed to keep the connection open. Note that
42 // the socket is closed immediately in case the callback returns false. 42 // the socket is closed immediately in case the callback returns false.
43 typedef base::Callback<bool (const Credentials&)> AuthCallback; 43 typedef base::Callback<bool (const Credentials&)> AuthCallback;
44 44
45 UnixDomainServerSocket(const AuthCallback& auth_callack, 45 UnixDomainServerSocket(const AuthCallback& auth_callack,
46 bool use_abstract_namespace); 46 bool use_abstract_namespace);
47 virtual ~UnixDomainServerSocket(); 47 ~UnixDomainServerSocket() override;
48 48
49 // Gets credentials of peer to check permissions. 49 // Gets credentials of peer to check permissions.
50 static bool GetPeerCredentials(SocketDescriptor socket_fd, 50 static bool GetPeerCredentials(SocketDescriptor socket_fd,
51 Credentials* credentials); 51 Credentials* credentials);
52 52
53 // ServerSocket implementation. 53 // ServerSocket implementation.
54 virtual int Listen(const IPEndPoint& address, int backlog) override; 54 int Listen(const IPEndPoint& address, int backlog) override;
55 virtual int ListenWithAddressAndPort(const std::string& unix_domain_path, 55 int ListenWithAddressAndPort(const std::string& unix_domain_path,
56 int port_unused, 56 int port_unused,
57 int backlog) override; 57 int backlog) override;
58 virtual int GetLocalAddress(IPEndPoint* address) const override; 58 int GetLocalAddress(IPEndPoint* address) const override;
59 virtual int Accept(scoped_ptr<StreamSocket>* socket, 59 int Accept(scoped_ptr<StreamSocket>* socket,
60 const CompletionCallback& callback) override; 60 const CompletionCallback& callback) override;
61 61
62 // Accepts an incoming connection on |listen_socket_|, but passes back 62 // Accepts an incoming connection on |listen_socket_|, but passes back
63 // a raw SocketDescriptor instead of a StreamSocket. 63 // a raw SocketDescriptor instead of a StreamSocket.
64 int AcceptSocketDescriptor(SocketDescriptor* socket_descriptor, 64 int AcceptSocketDescriptor(SocketDescriptor* socket_descriptor,
65 const CompletionCallback& callback); 65 const CompletionCallback& callback);
66 66
67 private: 67 private:
68 // A callback to wrap the setting of the out-parameter to Accept(). 68 // A callback to wrap the setting of the out-parameter to Accept().
69 // This allows the internal machinery of that call to be implemented in 69 // This allows the internal machinery of that call to be implemented in
70 // a manner that's agnostic to the caller's desired output. 70 // a manner that's agnostic to the caller's desired output.
(...skipping 11 matching lines...) Expand all
82 const bool use_abstract_namespace_; 82 const bool use_abstract_namespace_;
83 83
84 scoped_ptr<SocketLibevent> accept_socket_; 84 scoped_ptr<SocketLibevent> accept_socket_;
85 85
86 DISALLOW_COPY_AND_ASSIGN(UnixDomainServerSocket); 86 DISALLOW_COPY_AND_ASSIGN(UnixDomainServerSocket);
87 }; 87 };
88 88
89 } // namespace net 89 } // namespace net
90 90
91 #endif // NET_SOCKET_UNIX_DOMAIN_SOCKET_POSIX_H_ 91 #endif // NET_SOCKET_UNIX_DOMAIN_SOCKET_POSIX_H_
OLDNEW
« no previous file with comments | « net/socket/unix_domain_listen_socket_posix_unittest.cc ('k') | net/socket/websocket_endpoint_lock_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698