| Index: chrome/browser/chromeos/login/user.h | 
| diff --git a/chrome/browser/chromeos/login/user.h b/chrome/browser/chromeos/login/user.h | 
| index c82d57ecd2000f914e914680460b8638f7b7f431..5115d8d2dae0effa961b22000118fc1d46974cad 100644 | 
| --- a/chrome/browser/chromeos/login/user.h | 
| +++ b/chrome/browser/chromeos/login/user.h | 
| @@ -39,6 +39,13 @@ class User { | 
| static const int kProfileImageIndex = -2; | 
| static const int kInvalidImageIndex = -3; | 
|  | 
| +  enum WallpaperType { | 
| +    RANDOM = 0, | 
| +    CUSTOMIZED = 1, | 
| +    DEFAULT = 2, | 
| +    UNKNOWN = 3 | 
| +  }; | 
| + | 
| // The email the user used to log in. | 
| const std::string& email() const { return email_; } | 
|  | 
|  |