| Index: components/policy/core/common/remote_commands/remote_commands_queue.cc
|
| diff --git a/components/policy/core/common/remote_commands/remote_commands_queue.cc b/components/policy/core/common/remote_commands/remote_commands_queue.cc
|
| index e3b28477de93268281539fc46f556cc322bd8dc0..210217268eb7886eaa9a90784c08a8096a313b9d 100644
|
| --- a/components/policy/core/common/remote_commands/remote_commands_queue.cc
|
| +++ b/components/policy/core/common/remote_commands/remote_commands_queue.cc
|
| @@ -35,7 +35,7 @@ void RemoteCommandsQueue::RemoveObserver(Observer* observer) {
|
| observer_list_.RemoveObserver(observer);
|
| }
|
|
|
| -void RemoteCommandsQueue::AddJob(scoped_ptr<RemoteCommandJob> job) {
|
| +void RemoteCommandsQueue::AddJob(std::unique_ptr<RemoteCommandJob> job) {
|
| incoming_commands_.push(linked_ptr<RemoteCommandJob>(job.release()));
|
|
|
| if (!running_command_)
|
| @@ -43,7 +43,7 @@ void RemoteCommandsQueue::AddJob(scoped_ptr<RemoteCommandJob> job) {
|
| }
|
|
|
| void RemoteCommandsQueue::SetClockForTesting(
|
| - scoped_ptr<base::TickClock> clock) {
|
| + std::unique_ptr<base::TickClock> clock) {
|
| clock_ = std::move(clock);
|
| }
|
|
|
|
|