Chromium Code Reviews| Index: ui/views/controls/button/button.h |
| diff --git a/ui/views/controls/button/button.h b/ui/views/controls/button/button.h |
| index 8164be2a23836e4ba6c6fe36d1b772447796a32f..85a2ebc26923fdeea779374f55e213fa046e98c1 100644 |
| --- a/ui/views/controls/button/button.h |
| +++ b/ui/views/controls/button/button.h |
| @@ -35,15 +35,18 @@ class VIEWS_EXPORT Button : public View { |
| STATE_HOVERED, |
| STATE_PRESSED, |
| STATE_DISABLED, |
| + STATE_TOGGLED, |
|
msw
2013/05/16 22:40:05
nit: I'd prefer this ordered before STATE_DISABLED
tfarina
2013/05/18 00:54:08
removed
|
| STATE_COUNT, |
| }; |
| // Button styles with associated images and border painters. |
| - // TODO(msw): Add "Blue Button", Checkbox, Radio, Menu, ComboBox, etc. |
| + // TODO(msw): Add "Blue Button", Menu, ComboBox, etc. |
| enum ButtonStyle { |
| STYLE_BUTTON = 0, |
| STYLE_TEXTBUTTON, |
| STYLE_NATIVE_TEXTBUTTON, |
| + STYLE_CHECKBOX, |
| + STYLE_RADIO, |
| STYLE_COUNT, |
| }; |