Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef ASH_COMMON_SYSTEM_USER_ROUNDED_IMAGE_VIEW_H_ | 5 #ifndef ASH_COMMON_SYSTEM_USER_ROUNDED_IMAGE_VIEW_H_ |
| 6 #define ASH_COMMON_SYSTEM_USER_ROUNDED_IMAGE_VIEW_H_ | 6 #define ASH_COMMON_SYSTEM_USER_ROUNDED_IMAGE_VIEW_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "ui/gfx/geometry/size.h" | 9 #include "ui/gfx/geometry/size.h" |
| 10 #include "ui/gfx/image/image_skia.h" | 10 #include "ui/gfx/image/image_skia.h" |
| (...skipping 26 matching lines...) Expand all Loading... | |
| 37 void OnPaint(gfx::Canvas* canvas) override; | 37 void OnPaint(gfx::Canvas* canvas) override; |
| 38 | 38 |
| 39 private: | 39 private: |
| 40 gfx::ImageSkia image_; | 40 gfx::ImageSkia image_; |
| 41 gfx::ImageSkia resized_; | 41 gfx::ImageSkia resized_; |
| 42 gfx::Size image_size_; | 42 gfx::Size image_size_; |
| 43 int corner_radius_[4]; | 43 int corner_radius_[4]; |
| 44 | 44 |
| 45 // True if the given user is the active user and the icon should get | 45 // True if the given user is the active user and the icon should get |
| 46 // painted as active. | 46 // painted as active. |
| 47 // TODO(estade): remove this, it's not used in Material Design. | |
|
tdanderson
2016/11/16 23:08:08
nit: please add crbug.com/614453
Evan Stade
2016/11/17 00:37:50
so the reason I don't add that religiously is beca
tdanderson
2016/11/17 01:40:15
The plan is to grep for a) places that are gated w
Evan Stade
2016/11/17 01:54:18
one reason a) and b) are not sufficient alone is b
| |
| 47 bool active_user_; | 48 bool active_user_; |
| 48 | 49 |
| 49 DISALLOW_COPY_AND_ASSIGN(RoundedImageView); | 50 DISALLOW_COPY_AND_ASSIGN(RoundedImageView); |
| 50 }; | 51 }; |
| 51 | 52 |
| 52 } // namespace tray | 53 } // namespace tray |
| 53 } // namespace ash | 54 } // namespace ash |
| 54 | 55 |
| 55 #endif // ASH_COMMON_SYSTEM_USER_ROUNDED_IMAGE_VIEW_H_ | 56 #endif // ASH_COMMON_SYSTEM_USER_ROUNDED_IMAGE_VIEW_H_ |
| OLD | NEW |