| Index: ash/common/system/user/rounded_image_view.h
|
| diff --git a/ash/common/system/user/rounded_image_view.h b/ash/common/system/user/rounded_image_view.h
|
| index ad5d47a7874dfb3a8fe26b4b95d05fc0829079a4..c424777dc551877010cbd9d0120d69365eb40f1a 100644
|
| --- a/ash/common/system/user/rounded_image_view.h
|
| +++ b/ash/common/system/user/rounded_image_view.h
|
| @@ -17,9 +17,8 @@ namespace tray {
|
| class RoundedImageView : public views::View {
|
| public:
|
| // Constructs a new rounded image view with rounded corners of radius
|
| - // |corner_radius|. If |active_user| is set, the icon will be drawn in
|
| - // full colors - otherwise it will fade into the background.
|
| - RoundedImageView(int corner_radius, bool active_user);
|
| + // |corner_radius|.
|
| + explicit RoundedImageView(int corner_radius);
|
| ~RoundedImageView() override;
|
|
|
| // Set the image that should be displayed. The image contents is copied to the
|
| @@ -42,11 +41,6 @@ class RoundedImageView : public views::View {
|
| gfx::Size image_size_;
|
| int corner_radius_[4];
|
|
|
| - // True if the given user is the active user and the icon should get
|
| - // painted as active.
|
| - // TODO(estade): remove this, it's not used in Material Design.
|
| - bool active_user_;
|
| -
|
| DISALLOW_COPY_AND_ASSIGN(RoundedImageView);
|
| };
|
|
|
|
|