| Index: chrome/browser/chromeos/login/users/avatar/user_image_sync_observer.h
|
| diff --git a/chrome/browser/chromeos/login/users/avatar/user_image_sync_observer.h b/chrome/browser/chromeos/login/users/avatar/user_image_sync_observer.h
|
| index b972ed8e089e45d424668e54d0ff036e1dd35b17..64bc233a76f5564070446d7520302510f3d8d9f0 100644
|
| --- a/chrome/browser/chromeos/login/users/avatar/user_image_sync_observer.h
|
| +++ b/chrome/browser/chromeos/login/users/avatar/user_image_sync_observer.h
|
| @@ -5,9 +5,9 @@
|
| #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_USERS_AVATAR_USER_IMAGE_SYNC_OBSERVER_H_
|
| #define CHROME_BROWSER_CHROMEOS_LOGIN_USERS_AVATAR_USER_IMAGE_SYNC_OBSERVER_H_
|
|
|
| +#include <memory>
|
| #include <string>
|
|
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/observer_list.h"
|
| #include "components/syncable_prefs/pref_service_syncable_observer.h"
|
| #include "content/public/browser/notification_observer.h"
|
| @@ -95,8 +95,8 @@ class UserImageSyncObserver
|
| bool CanUpdateLocalImageNow();
|
|
|
| const user_manager::User* user_;
|
| - scoped_ptr<PrefChangeRegistrar> pref_change_registrar_;
|
| - scoped_ptr<content::NotificationRegistrar> notification_registrar_;
|
| + std::unique_ptr<PrefChangeRegistrar> pref_change_registrar_;
|
| + std::unique_ptr<content::NotificationRegistrar> notification_registrar_;
|
| syncable_prefs::PrefServiceSyncable* prefs_;
|
| bool is_synced_;
|
| // Indicates if local user image changed during initialization.
|
|
|