Chromium Code Reviews| Index: ui/views/controls/image_view.h |
| diff --git a/ui/views/controls/image_view.h b/ui/views/controls/image_view.h |
| index 401289a76ccf265c637e389fa407568b55f23585..ca425cab94005950e9b686aa19d43e492371a8da 100644 |
| --- a/ui/views/controls/image_view.h |
| +++ b/ui/views/controls/image_view.h |
| @@ -50,9 +50,9 @@ class VIEWS_EXPORT ImageView : public View { |
| // image. |
| void SetImage(const gfx::ImageSkia* image_skia); |
| - // Returns the image currently displayed or NULL of none is currently set. |
| + // Returns the image currently displayed which can be empty if not set. |
|
Peter Kasting
2016/01/28 00:22:08
Nit: Comma after "displayed"
varkha
2016/01/28 00:32:50
Done.
|
| // The returned image is still owned by the ImageView. |
| - const gfx::ImageSkia& GetImage(); |
| + const gfx::ImageSkia& GetImage() const; |
| // Set the desired image size for the receiving ImageView. |
| void SetImageSize(const gfx::Size& image_size); |