| Index: mojo/edk/system/message_pipe_perftest.cc
|
| diff --git a/mojo/edk/system/message_pipe_perftest.cc b/mojo/edk/system/message_pipe_perftest.cc
|
| index 562acbd9f8a816a1a7067e359401eb0c7b5dbce1..6772b2eed5027fb680d12d85b6bf1e1b61e59176 100644
|
| --- a/mojo/edk/system/message_pipe_perftest.cc
|
| +++ b/mojo/edk/system/message_pipe_perftest.cc
|
| @@ -6,6 +6,7 @@
|
| #include <stdio.h>
|
| #include <string.h>
|
|
|
| +#include <memory>
|
| #include <string>
|
| #include <vector>
|
|
|
| @@ -84,7 +85,7 @@ class MultiprocessMessagePipePerfTest
|
| size_t message_size_;
|
| std::string payload_;
|
| std::string read_buffer_;
|
| - scoped_ptr<base::PerfTimeLogger> perf_logger_;
|
| + std::unique_ptr<base::PerfTimeLogger> perf_logger_;
|
| };
|
|
|
| // For each message received, sends a reply message with the same contents
|
|
|