Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1848)

Unified Diff: ui/accessibility/ax_enums.idl

Issue 1137393003: Add style information to the snapshot node (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gn support Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 {

Powered by Google App Engine
This is Rietveld 408576698