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

Unified Diff: net/socket/unix_domain_server_socket_posix.h

Issue 1335423002: net: Remove 'libevent' from filenames. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review Created 5 years, 3 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
Index: net/socket/unix_domain_server_socket_posix.h
diff --git a/net/socket/unix_domain_server_socket_posix.h b/net/socket/unix_domain_server_socket_posix.h
index 1097548c51372c8b8fd8a23f471c1168eea6e0b5..7dd5c1a82b165fe3145f51fa52db567235feb33a 100644
--- a/net/socket/unix_domain_server_socket_posix.h
+++ b/net/socket/unix_domain_server_socket_posix.h
@@ -19,7 +19,7 @@
namespace net {
-class SocketLibevent;
+class SocketPosix;
// Unix Domain Server Socket Implementation. Supports abstract namespaces on
// Linux and Android.
@@ -68,7 +68,7 @@ class NET_EXPORT UnixDomainServerSocket : public ServerSocket {
// A callback to wrap the setting of the out-parameter to Accept().
// This allows the internal machinery of that call to be implemented in
// a manner that's agnostic to the caller's desired output.
- typedef base::Callback<void(scoped_ptr<SocketLibevent>)> SetterCallback;
+ typedef base::Callback<void(scoped_ptr<SocketPosix>)> SetterCallback;
int DoAccept(const SetterCallback& setter_callback,
const CompletionCallback& callback);
@@ -77,11 +77,11 @@ class NET_EXPORT UnixDomainServerSocket : public ServerSocket {
int rv);
bool AuthenticateAndGetStreamSocket(const SetterCallback& setter_callback);
- scoped_ptr<SocketLibevent> listen_socket_;
+ scoped_ptr<SocketPosix> listen_socket_;
const AuthCallback auth_callback_;
const bool use_abstract_namespace_;
- scoped_ptr<SocketLibevent> accept_socket_;
+ scoped_ptr<SocketPosix> accept_socket_;
DISALLOW_COPY_AND_ASSIGN(UnixDomainServerSocket);
};
« no previous file with comments | « net/socket/unix_domain_client_socket_posix_unittest.cc ('k') | net/socket/unix_domain_server_socket_posix.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698