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

Unified Diff: net/socket/unix_domain_client_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
« no previous file with comments | « net/socket/tcp_socket_win.cc ('k') | net/socket/unix_domain_client_socket_posix.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/socket/unix_domain_client_socket_posix.h
diff --git a/net/socket/unix_domain_client_socket_posix.h b/net/socket/unix_domain_client_socket_posix.h
index 77ef9d579446078a7eea4335c979b40b7b823ad4..4e2c17d5db674f650943fcfbc19fc6ed25c6ebc1 100644
--- a/net/socket/unix_domain_client_socket_posix.h
+++ b/net/socket/unix_domain_client_socket_posix.h
@@ -18,7 +18,7 @@
namespace net {
-class SocketLibevent;
+class SocketPosix;
struct SockaddrStorage;
// A client socket that uses unix domain socket as the transport layer.
@@ -28,9 +28,9 @@ class NET_EXPORT UnixDomainClientSocket : public StreamSocket {
// to connect to a server socket.
UnixDomainClientSocket(const std::string& socket_path,
bool use_abstract_namespace);
- // Builds a client socket with socket libevent which is already connected.
+ // Builds a client socket with SocketPosix which is already connected.
// UnixDomainServerSocket uses this after it accepts a connection.
- explicit UnixDomainClientSocket(scoped_ptr<SocketLibevent> socket);
+ explicit UnixDomainClientSocket(scoped_ptr<SocketPosix> socket);
~UnixDomainClientSocket() override;
@@ -77,7 +77,7 @@ class NET_EXPORT UnixDomainClientSocket : public StreamSocket {
private:
const std::string socket_path_;
const bool use_abstract_namespace_;
- scoped_ptr<SocketLibevent> socket_;
+ scoped_ptr<SocketPosix> socket_;
// This net log is just to comply StreamSocket::NetLog(). It throws away
// everything.
BoundNetLog net_log_;
« no previous file with comments | « net/socket/tcp_socket_win.cc ('k') | net/socket/unix_domain_client_socket_posix.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698