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); |
} |
}; |