Chromium Code Reviews| Index: components/user_manager/user.h |
| diff --git a/components/user_manager/user.h b/components/user_manager/user.h |
| index 0d6431b6ebc670748a811d379398eb204f425490..54d7573ce90831e468517a64fa98c8fa0d1133fb 100644 |
| --- a/components/user_manager/user.h |
| +++ b/components/user_manager/user.h |
| @@ -127,13 +127,13 @@ class USER_MANAGER_EXPORT User : public UserInfo { |
| bool HasDefaultImage() const; |
| int image_index() const { return image_index_; } |
| - bool has_raw_image() const { return user_image_.has_raw_image(); } |
| - // Returns raw representation of static user image. |
| - const UserImage::RawImage& raw_image() const { |
| - return user_image_.raw_image(); |
| + bool has_web_image() const { return user_image_.has_web_image(); } |
| + // Returns web representation of static user image. |
| + const UserImage::WebImage& web_image() const { |
| + return user_image_.web_image(); |
| } |
| - // Whether |raw_image| contains data in format that is considered safe to |
| + // Whether |web_image| contains data in format that is considered safe to |
|
hashimoto
2016/02/29 08:01:59
Shouldn't |web_image| be replaced with |user_image
satorux1
2016/02/29 08:11:41
Done.
|
| // decode in sensitive environment (on Login screen). |
| bool image_is_safe_format() const { return user_image_.is_safe_format(); } |