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

Unified Diff: base/posix/unix_domain_socket_linux.h

Issue 1149113006: Move Pickle to base namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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 | « base/pickle_unittest.cc ('k') | chrome/browser/password_manager/native_backend_kwallet_x.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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).
« no previous file with comments | « base/pickle_unittest.cc ('k') | chrome/browser/password_manager/native_backend_kwallet_x.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698