Chromium Code Reviews| 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..693ea3e8acb210697ab822b278da6786b9022ca4 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 socket posix which is already connected. |
|
mmenke
2015/09/14 15:12:45
nit: SocketPosix?
tfarina
2015/09/14 15:46:02
Done.
|
| // 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_; |