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 142cb146b223c048dc993d3538aeb0e02e833c07..ac0fc1839a8eef7d2357c837c5d9fb99b89ffdef 100644 |
--- a/base/posix/unix_domain_socket_linux.h |
+++ b/base/posix/unix_domain_socket_linux.h |
@@ -14,7 +14,9 @@ |
#include "base/memory/scoped_vector.h" |
#include "base/process/process_handle.h" |
+namespace base { |
class Pickle; |
+} |
class BASE_EXPORT UnixDomainSocket { |
public: |
@@ -75,7 +77,7 @@ class BASE_EXPORT UnixDomainSocket { |
uint8_t* reply, |
unsigned reply_len, |
int* result_fd, |
- const Pickle& request); |
+ const base::Pickle& request); |
// Similar to SendRecvMsg(), but |recvmsg_flags| allows to control the flags |
// of the recvmsg(2) call. |
@@ -84,7 +86,7 @@ class BASE_EXPORT UnixDomainSocket { |
unsigned reply_len, |
int recvmsg_flags, |
int* result_fd, |
- const Pickle& request); |
+ const base::Pickle& request); |
#endif // !defined(OS_NACL_NONSFI) |
private: |
// Similar to RecvMsg, but allows to specify |flags| for recvmsg(2). |