| 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_;
|
|
|