| Index: mojo/system/local_data_pipe.h
|
| diff --git a/mojo/system/local_data_pipe.h b/mojo/system/local_data_pipe.h
|
| index 87b1e282a758a7db711f1ed14c777be3c58fa19e..b63df20f30dade60d023d73f409f9de1b65f359c 100644
|
| --- a/mojo/system/local_data_pipe.h
|
| +++ b/mojo/system/local_data_pipe.h
|
| @@ -31,9 +31,11 @@ class MOJO_SYSTEM_IMPL_EXPORT LocalDataPipe : public DataPipe {
|
|
|
| // |DataPipe| implementation:
|
| virtual void ProducerCloseImplNoLock() OVERRIDE;
|
| - virtual MojoResult ProducerWriteDataImplNoLock(const void* elements,
|
| - uint32_t* num_bytes,
|
| - bool all_or_none) OVERRIDE;
|
| + virtual MojoResult ProducerWriteDataImplNoLock(
|
| + UserPointer<const void> elements,
|
| + UserPointer<uint32_t> num_bytes,
|
| + uint32_t max_num_bytes_to_write,
|
| + uint32_t min_num_bytes_to_write) OVERRIDE;
|
| virtual MojoResult ProducerBeginWriteDataImplNoLock(
|
| UserPointer<void*> buffer,
|
| UserPointer<uint32_t> buffer_num_bytes,
|
|
|