| Index: components/arc/standalone/arc_standalone_bridge_runner.h
|
| diff --git a/components/arc/standalone/arc_standalone_bridge_runner.h b/components/arc/standalone/arc_standalone_bridge_runner.h
|
| index 3a88e4b6c397334c2525ebd25fc43ce34c00de6e..9edd5f66bdb5fe4fc2faadf4e4b92316ae0c0b53 100644
|
| --- a/components/arc/standalone/arc_standalone_bridge_runner.h
|
| +++ b/components/arc/standalone/arc_standalone_bridge_runner.h
|
| @@ -5,8 +5,9 @@
|
| #ifndef COMPONENTS_ARC_ARC_STANDALONE_BRIDGE_RUNNER_H_
|
| #define COMPONENTS_ARC_ARC_STANDALONE_BRIDGE_RUNNER_H_
|
|
|
| +#include <memory>
|
| +
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/message_loop/message_loop.h"
|
| #include "base/run_loop.h"
|
| #include "base/threading/thread_checker.h"
|
| @@ -28,7 +29,7 @@ class ArcStandaloneBridgeRunner {
|
|
|
| private:
|
| base::MessageLoopForIO message_loop_;
|
| - scoped_ptr<base::RunLoop> run_loop_;
|
| + std::unique_ptr<base::RunLoop> run_loop_;
|
| base::ThreadChecker thread_checker_;
|
| int exit_code_;
|
|
|
|
|