| Index: sync/engine/sync_scheduler.h
|
| diff --git a/sync/engine/sync_scheduler.h b/sync/engine/sync_scheduler.h
|
| index 1bf5a10d9fa935fe9276786a3a883835a70d6d2d..a2ed42ba872d8de4546d65f5bc912aca99e347f5 100644
|
| --- a/sync/engine/sync_scheduler.h
|
| +++ b/sync/engine/sync_scheduler.h
|
| @@ -6,6 +6,7 @@
|
| #ifndef SYNC_ENGINE_SYNC_SCHEDULER_H_
|
| #define SYNC_ENGINE_SYNC_SCHEDULER_H_
|
|
|
| +#include <memory>
|
| #include <string>
|
|
|
| #include "base/callback.h"
|
| @@ -132,7 +133,7 @@ class SYNC_EXPORT SyncScheduler : public sessions::SyncSession::Delegate {
|
| // order to fetch the update.
|
| virtual void ScheduleInvalidationNudge(
|
| syncer::ModelType type,
|
| - scoped_ptr<InvalidationInterface> invalidation,
|
| + std::unique_ptr<InvalidationInterface> invalidation,
|
| const tracked_objects::Location& nudge_location) = 0;
|
|
|
| // Requests a non-blocking initial sync request for the specified type.
|
|
|