| Index: base/posix/unix_domain_socket_linux.h
|
| diff --git a/base/posix/unix_domain_socket_linux.h b/base/posix/unix_domain_socket_linux.h
|
| index 94da4b4f9113e6b8305520257cc626ee8dd30619..98c9d61ba3e5295161e9125496fd6db53e55f3b9 100644
|
| --- a/base/posix/unix_domain_socket_linux.h
|
| +++ b/base/posix/unix_domain_socket_linux.h
|
| @@ -11,7 +11,6 @@
|
|
|
| #include "base/base_export.h"
|
| #include "base/files/scoped_file.h"
|
| -#include "base/memory/scoped_vector.h"
|
| #include "base/process/process_handle.h"
|
|
|
| namespace base {
|
| @@ -42,7 +41,7 @@ class BASE_EXPORT UnixDomainSocket {
|
| static ssize_t RecvMsg(int fd,
|
| void* msg,
|
| size_t length,
|
| - ScopedVector<ScopedFD>* fds);
|
| + std::vector<ScopedFD>* fds);
|
|
|
| // Same as RecvMsg above, but also returns the sender's process ID (as seen
|
| // from the caller's namespace). However, before using this function to
|
| @@ -51,7 +50,7 @@ class BASE_EXPORT UnixDomainSocket {
|
| static ssize_t RecvMsgWithPid(int fd,
|
| void* msg,
|
| size_t length,
|
| - ScopedVector<ScopedFD>* fds,
|
| + std::vector<ScopedFD>* fds,
|
| ProcessId* pid);
|
|
|
| #if !defined(OS_NACL_NONSFI)
|
| @@ -94,7 +93,7 @@ class BASE_EXPORT UnixDomainSocket {
|
| void* msg,
|
| size_t length,
|
| int flags,
|
| - ScopedVector<ScopedFD>* fds,
|
| + std::vector<ScopedFD>* fds,
|
| ProcessId* pid);
|
| };
|
|
|
|
|