Chromium Code Reviews| Index: ui/accessibility/ax_enums.idl |
| diff --git a/ui/accessibility/ax_enums.idl b/ui/accessibility/ax_enums.idl |
| index 0e72810122337aea7315f0954c272f05763220c7..42388a7204f298e8d0fd74713d1fa5f0285cb333 100644 |
| --- a/ui/accessibility/ax_enums.idl |
| +++ b/ui/accessibility/ax_enums.idl |
| @@ -427,11 +427,13 @@ |
| text_direction_btt |
| }; |
| + // A Java counterpart will be generated for this enum. |
| + // GENERATED_JAVA_ENUM_PACKAGE: org.chromium.ui.accessibility |
| [cpp_enum_prefix_override="ax"] enum AXTextStyle { |
| - text_style_bold, |
| - text_style_italic, |
| - text_style_underline, |
| - text_style_line_through |
| + text_style_bold = 1, |
| + text_style_italic = 2, |
| + text_style_underline = 4, |
| + text_style_line_through = 8 |
|
dmazzoni
2015/05/27 15:46:39
Oh, good catch - these should have been powers of
|
| }; |
| [cpp_enum_prefix_override="ax"] enum AXInvalidState { |