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

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

Issue 11741003: Remove PrefServiceSimple, replacing it with PrefService and PrefRegistrySimple. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 12 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/wallpaper_manager.cc
diff --git a/chrome/browser/chromeos/login/wallpaper_manager.cc b/chrome/browser/chromeos/login/wallpaper_manager.cc
index eb8044dc730f30d081d2add464cc32a26cbaeedd..6d50b0563a46c78eeee7024173251e9e17d27e31 100644
--- a/chrome/browser/chromeos/login/wallpaper_manager.cc
+++ b/chrome/browser/chromeos/login/wallpaper_manager.cc
@@ -8,9 +8,9 @@
#include "ash/shell.h"
#include "base/command_line.h"
-#include "base/logging.h"
#include "base/file_path.h"
#include "base/file_util.h"
+#include "base/logging.h"
#include "base/metrics/histogram.h"
#include "base/path_service.h"
#include "base/string_number_conversions.h"
@@ -123,7 +123,7 @@ WallpaperManager::WallpaperManager()
}
// static
-void WallpaperManager::RegisterPrefs(PrefServiceSimple* local_state) {
+void WallpaperManager::RegisterPrefs(PrefRegistrarSimple* local_state) {
local_state->RegisterDictionaryPref(prefs::kUsersWallpaperInfo);
local_state->RegisterDictionaryPref(kUserWallpapers);
local_state->RegisterDictionaryPref(kUserWallpapersProperties);

Powered by Google App Engine
This is Rietveld 408576698