Index: mojo/edk/system/remote_producer_data_pipe_impl.cc |
diff --git a/mojo/edk/system/remote_producer_data_pipe_impl.cc b/mojo/edk/system/remote_producer_data_pipe_impl.cc |
index 772277bcca557f3d2cc888e8b25d08d772f74bce..c47349947b11f43c60b3a8bd44bca32b2dcccbc2 100644 |
--- a/mojo/edk/system/remote_producer_data_pipe_impl.cc |
+++ b/mojo/edk/system/remote_producer_data_pipe_impl.cc |
@@ -20,6 +20,7 @@ |
#include "mojo/edk/system/remote_consumer_data_pipe_impl.h" |
#include "mojo/edk/system/remote_data_pipe_ack.h" |
+using mojo::embedder::ScopedPlatformHandle; |
using mojo::util::RefPtr; |
namespace mojo { |
@@ -162,7 +163,7 @@ bool RemoteProducerDataPipeImpl::ProducerEndSerialize( |
Channel* /*channel*/, |
void* /*destination*/, |
size_t* /*actual_size*/, |
- embedder::PlatformHandleVector* /*platform_handles*/) { |
+ std::vector<ScopedPlatformHandle>* /*platform_handles*/) { |
NOTREACHED(); |
return false; |
} |
@@ -305,7 +306,7 @@ bool RemoteProducerDataPipeImpl::ConsumerEndSerialize( |
Channel* channel, |
void* destination, |
size_t* actual_size, |
- embedder::PlatformHandleVector* platform_handles) { |
+ std::vector<ScopedPlatformHandle>* /*platform_handles*/) { |
SerializedDataPipeConsumerDispatcher* s = |
static_cast<SerializedDataPipeConsumerDispatcher*>(destination); |
s->validated_options = validated_options(); |