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

Unified Diff: chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager.h

Issue 443163002: Rename WallpaperInfo::file --> WallpaperInfo::location. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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/users/wallpaper/wallpaper_manager.h
diff --git a/chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager.h b/chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager.h
index 86958bc50d60b326c3b13089b5f35d7b67975042..9341c0fc684fa258f277bb42759aee0471ea4155 100644
--- a/chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager.h
+++ b/chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager.h
@@ -41,13 +41,14 @@ class UserImage;
namespace chromeos {
struct WallpaperInfo {
- // Online wallpaper URL or file name of migrated wallpaper.
- std::string file;
+ // Either file name of migrated wallpaper including first directory level
+ // (corresponding to user id hash) or online wallpaper URL.
+ std::string location;
ash::WallpaperLayout layout;
user_manager::User::WallpaperType type;
base::Time date;
bool operator==(const WallpaperInfo& other) {
- return (file == other.file) && (layout == other.layout) &&
+ return (location == other.location) && (layout == other.layout) &&
(type == other.type);
}
};

Powered by Google App Engine
This is Rietveld 408576698