| Index: components/policy/core/common/remote_commands/testing_remote_commands_server.cc
|
| diff --git a/components/policy/core/common/remote_commands/testing_remote_commands_server.cc b/components/policy/core/common/remote_commands/testing_remote_commands_server.cc
|
| index 53db3e2c3d1f18c2e992d4e2cb9866bfcd28acf1..3f9a65b4e3260c1f646f194d05c77787e8bf476f 100644
|
| --- a/components/policy/core/common/remote_commands/testing_remote_commands_server.cc
|
| +++ b/components/policy/core/common/remote_commands/testing_remote_commands_server.cc
|
| @@ -76,7 +76,7 @@ void TestingRemoteCommandsServer::IssueCommand(
|
|
|
| TestingRemoteCommandsServer::RemoteCommands
|
| TestingRemoteCommandsServer::FetchCommands(
|
| - scoped_ptr<RemoteCommandJob::UniqueIDType> last_command_id,
|
| + std::unique_ptr<RemoteCommandJob::UniqueIDType> last_command_id,
|
| const RemoteCommandResults& previous_job_results) {
|
| base::AutoLock auto_lock(lock_);
|
|
|
| @@ -135,7 +135,8 @@ TestingRemoteCommandsServer::FetchCommands(
|
| return fetched_commands;
|
| }
|
|
|
| -void TestingRemoteCommandsServer::SetClock(scoped_ptr<base::TickClock> clock) {
|
| +void TestingRemoteCommandsServer::SetClock(
|
| + std::unique_ptr<base::TickClock> clock) {
|
| DCHECK(thread_checker_.CalledOnValidThread());
|
| clock_ = std::move(clock);
|
| }
|
|
|