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

Unified Diff: chrome/browser/chromeos/login/user_manager.cc

Issue 10384079: Reland "Implement random wallpaper feature" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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
« no previous file with comments | « chrome/browser/chromeos/login/user_manager.h ('k') | chrome/browser/chromeos/login/user_manager_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/login/user_manager.cc
diff --git a/chrome/browser/chromeos/login/user_manager.cc b/chrome/browser/chromeos/login/user_manager.cc
index cde6c0b5c33dcae50b6eaccf32ab811de2bd982b..af1fac9827ea8e0184f490790d8c9b1599108dfa 100644
--- a/chrome/browser/chromeos/login/user_manager.cc
+++ b/chrome/browser/chromeos/login/user_manager.cc
@@ -14,6 +14,8 @@ namespace chromeos {
// static
const char UserManager::kLoggedInUsers[] = "LoggedInUsers";
const char UserManager::kUserWallpapers[] = "UserWallpapers";
+const char UserManager::kUserWallpapersProperties[] =
+ "UserWallpapersProperties";
const char UserManager::kUserImages[] = "UserImages";
const char UserManager::kUserDisplayEmail[] = "UserDisplayEmail";
const char UserManager::kUserOAuthTokenStatus[] = "OAuthTokenStatus";
@@ -78,6 +80,8 @@ void UserManager::RegisterPrefs(PrefService* local_state) {
local_state->RegisterListPref(kLoggedInUsers, PrefService::UNSYNCABLE_PREF);
local_state->RegisterDictionaryPref(kUserWallpapers,
PrefService::UNSYNCABLE_PREF);
+ local_state->RegisterDictionaryPref(kUserWallpapersProperties,
+ PrefService::UNSYNCABLE_PREF);
local_state->RegisterDictionaryPref(kUserImages,
PrefService::UNSYNCABLE_PREF);
local_state->RegisterDictionaryPref(kUserOAuthTokenStatus,
« no previous file with comments | « chrome/browser/chromeos/login/user_manager.h ('k') | chrome/browser/chromeos/login/user_manager_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698