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

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

Issue 10375010: Implement user selected wallpaper feature. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: James' review 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
Index: chrome/browser/chromeos/login/user.cc
diff --git a/chrome/browser/chromeos/login/user.cc b/chrome/browser/chromeos/login/user.cc
index 833dcc18a3b86543d102288519c3b836b63bf77d..10a2939f0d5c6047d97bdb3a4094415c2c61ff0e 100644
--- a/chrome/browser/chromeos/login/user.cc
+++ b/chrome/browser/chromeos/login/user.cc
@@ -61,6 +61,10 @@ void User::SetStubImage(int image_index) {
image_is_stub_ = true;
}
+void User::SetWallpaperThumbnail(const SkBitmap& wallpaper_thumb) {
flackr 2012/05/09 21:26:16 You should probably change wallpaper_thumb to wall
bshe 2012/05/10 16:10:26 Done.
+ wallpaper_thumb_ = wallpaper_thumb;
+}
+
std::string User::GetAccountName() const {
return GetUserName(email_);
}

Powered by Google App Engine
This is Rietveld 408576698