diff options
Diffstat (limited to 'sandbox/linux/syscall_broker/broker_client.cc')
-rw-r--r-- | sandbox/linux/syscall_broker/broker_client.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sandbox/linux/syscall_broker/broker_client.cc b/sandbox/linux/syscall_broker/broker_client.cc index 5af2fb8..760cf59 100644 --- a/sandbox/linux/syscall_broker/broker_client.cc +++ b/sandbox/linux/syscall_broker/broker_client.cc @@ -65,7 +65,7 @@ int BrokerClient::PathAndFlagsSyscall(IPCCommand syscall_type, } } - Pickle write_pickle; + base::Pickle write_pickle; write_pickle.WriteInt(syscall_type); write_pickle.WriteString(pathname); write_pickle.WriteInt(flags); @@ -87,8 +87,8 @@ int BrokerClient::PathAndFlagsSyscall(IPCCommand syscall_type, return -ENOMEM; } - Pickle read_pickle(reinterpret_cast<char*>(reply_buf), msg_len); - PickleIterator iter(read_pickle); + base::Pickle read_pickle(reinterpret_cast<char*>(reply_buf), msg_len); + base::PickleIterator iter(read_pickle); int return_value = -1; // Now deserialize the return value and eventually return the file // descriptor. |