Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(55)

Unified Diff: chrome/browser/chromeos/login/user_manager_impl.h

Issue 10832035: Switch from SignedSettings to DeviceSettingsService. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase, remove blocking GetOwnershipStatus() Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/login/user_manager_impl.h
diff --git a/chrome/browser/chromeos/login/user_manager_impl.h b/chrome/browser/chromeos/login/user_manager_impl.h
index d63dbc975f3f4a593c6981e21ebe6056e564add9..b9edfc5a80fdbb0381ce76d06e8c0704ac1914e2 100644
--- a/chrome/browser/chromeos/login/user_manager_impl.h
+++ b/chrome/browser/chromeos/login/user_manager_impl.h
@@ -20,16 +20,17 @@
#include "chrome/browser/chromeos/login/user_image_loader.h"
#include "chrome/browser/chromeos/login/user_manager.h"
#include "chrome/browser/chromeos/login/wallpaper_manager.h"
+#include "chrome/browser/chromeos/settings/device_settings_service.h"
#include "chrome/browser/profiles/profile_downloader_delegate.h"
#include "chrome/browser/sync/profile_sync_service_observer.h"
#include "content/public/browser/notification_observer.h"
#include "content/public/browser/notification_registrar.h"
-class SkBitmap;
class FilePath;
class PrefService;
class ProfileDownloader;
class ProfileSyncService;
+class SkBitmap;
namespace chromeos {
@@ -91,8 +92,8 @@ class UserManagerImpl : public UserManager,
virtual bool IsLoggedInAsGuest() const OVERRIDE;
virtual bool IsLoggedInAsStub() const OVERRIDE;
virtual bool IsSessionStarted() const OVERRIDE;
- virtual void AddObserver(Observer* obs) OVERRIDE;
- virtual void RemoveObserver(Observer* obs) OVERRIDE;
+ virtual void AddObserver(UserManager::Observer* obs) OVERRIDE;
+ virtual void RemoveObserver(UserManager::Observer* obs) OVERRIDE;
virtual void NotifyLocalStateChanged() OVERRIDE;
virtual const SkBitmap& DownloadedProfileImage() const OVERRIDE;
@@ -215,9 +216,10 @@ class UserManagerImpl : public UserManager,
void DeleteUserImage(const FilePath& image_path);
// Updates current user ownership on UI thread.
- void UpdateOwnership(bool is_owner);
+ void UpdateOwnership(DeviceSettingsService::OwnershipStatus status,
+ bool is_owner);
- // Checks current user's ownership on file thread.
+ // Triggers an asynchronous ownership check.
void CheckOwnership();
// ProfileDownloaderDelegate implementation.
@@ -283,7 +285,7 @@ class UserManagerImpl : public UserManager,
// service, so do NOT use it outside |OnStateChanged| method.
ProfileSyncService* observed_sync_service_;
- ObserverList<Observer> observer_list_;
+ ObserverList<UserManager::Observer> observer_list_;
// Download user profile image on login to update it if it's changed.
scoped_ptr<ProfileDownloader> profile_image_downloader_;

Powered by Google App Engine
This is Rietveld 408576698