| Index: components/sync_driver/sync_prefs.h
|
| diff --git a/components/sync_driver/sync_prefs.h b/components/sync_driver/sync_prefs.h
|
| index 7d52e867c3888e48f4545c91c7f4c16b9ca92c8e..6060a1cbfff0399183a75a36fff878c213ca7f62 100644
|
| --- a/components/sync_driver/sync_prefs.h
|
| +++ b/components/sync_driver/sync_prefs.h
|
| @@ -8,11 +8,11 @@
|
| #include <stdint.h>
|
|
|
| #include <map>
|
| +#include <memory>
|
| #include <string>
|
|
|
| #include "base/compiler_specific.h"
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/memory/weak_ptr.h"
|
| #include "base/observer_list.h"
|
| #include "base/threading/non_thread_safe.h"
|
| @@ -179,7 +179,7 @@ class SyncPrefs : NON_EXPORTED_BASE(public base::NonThreadSafe),
|
| // initialization after transition.
|
| void SetSavedNigoriStateForPassphraseEncryptionTransition(
|
| const syncer::SyncEncryptionHandler::NigoriState& nigori_state);
|
| - scoped_ptr<syncer::SyncEncryptionHandler::NigoriState>
|
| + std::unique_ptr<syncer::SyncEncryptionHandler::NigoriState>
|
| GetSavedNigoriStateForPassphraseEncryptionTransition() const;
|
|
|
| private:
|
|
|