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

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: add content dependency to ui_accessibility_java for GN 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
« no previous file with comments | « ui/accessibility/accessibility.gyp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/accessibility/ax_enums.idl
diff --git a/ui/accessibility/ax_enums.idl b/ui/accessibility/ax_enums.idl
index 63c93e7e59ed6ebcaaeea683bbe3a27b6e9fd610..4bc678a7f07afa5496552d1f2f5076497fd88aa9 100644
--- a/ui/accessibility/ax_enums.idl
+++ b/ui/accessibility/ax_enums.idl
@@ -428,11 +428,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
};
[cpp_enum_prefix_override="ax"] enum AXInvalidState {
« no previous file with comments | « ui/accessibility/accessibility.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698