| Index: components/arc/standalone/service_helper_unittest.cc
|
| diff --git a/components/arc/standalone/service_helper_unittest.cc b/components/arc/standalone/service_helper_unittest.cc
|
| index 4074d4103bdf31a70c4f9928f929d65533a6aca1..a1da8fc8db49604967c73cc0cae74cb6ccb75c49 100644
|
| --- a/components/arc/standalone/service_helper_unittest.cc
|
| +++ b/components/arc/standalone/service_helper_unittest.cc
|
| @@ -7,9 +7,10 @@
|
| #include <signal.h>
|
| #include <unistd.h>
|
|
|
| +#include <memory>
|
| +
|
| #include "base/bind.h"
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/message_loop/message_loop.h"
|
| #include "base/run_loop.h"
|
| #include "base/test/launcher/unit_test_launcher.h"
|
| @@ -44,9 +45,9 @@ class ServiceHelperTest : public ::testing::Test {
|
| }
|
|
|
| protected:
|
| - scoped_ptr<base::MessageLoopForIO> base_loop_;
|
| - scoped_ptr<base::RunLoop> run_loop_;
|
| - scoped_ptr<ServiceHelper> helper_;
|
| + std::unique_ptr<base::MessageLoopForIO> base_loop_;
|
| + std::unique_ptr<base::RunLoop> run_loop_;
|
| + std::unique_ptr<ServiceHelper> helper_;
|
|
|
| private:
|
| DISALLOW_COPY_AND_ASSIGN(ServiceHelperTest);
|
|
|