| Index: remoting/host/security_key/remote_security_key_ipc_client_unittest.cc
|
| diff --git a/remoting/host/security_key/remote_security_key_ipc_client_unittest.cc b/remoting/host/security_key/remote_security_key_ipc_client_unittest.cc
|
| index 2191d718706fa56a31b92137e2e18009bf405bee..b37d4f411f3348fd00762d3aa4a07c3e5e4409a9 100644
|
| --- a/remoting/host/security_key/remote_security_key_ipc_client_unittest.cc
|
| +++ b/remoting/host/security_key/remote_security_key_ipc_client_unittest.cc
|
| @@ -4,11 +4,11 @@
|
|
|
| #include "remoting/host/security_key/remote_security_key_ipc_client.h"
|
|
|
| +#include <memory>
|
| #include <string>
|
|
|
| #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 "ipc/ipc_channel.h"
|
| @@ -68,7 +68,7 @@ class RemoteSecurityKeyIpcClientTest : public testing::Test {
|
|
|
| // Used to allow |message_loop_| to run during tests. The instance is reset
|
| // after each stage of the tests has been completed.
|
| - scoped_ptr<base::RunLoop> run_loop_;
|
| + std::unique_ptr<base::RunLoop> run_loop_;
|
|
|
| // The object under test.
|
| RemoteSecurityKeyIpcClient remote_security_key_ipc_client_;
|
|
|