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

Unified Diff: public/web/WebAXEnums.h

Issue 736943002: Support aria-grabbed attribute. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Update enum name Created 6 years, 1 month 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 | « Source/web/WebAXObject.cpp ('k') | public/web/WebAXObject.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebAXEnums.h
diff --git a/public/web/WebAXEnums.h b/public/web/WebAXEnums.h
index a5e7439e3d0b2868a520bc4903a1b9fe9f9c2074..235635df1ce9bc4315fe01b0c53ea8c11b258a37 100644
--- a/public/web/WebAXEnums.h
+++ b/public/web/WebAXEnums.h
@@ -240,6 +240,15 @@ enum WebAXExpanded {
WebAXExpandedExpanded
};
+// Attribute definition values.
+// These values must match blink::AccessibilityOptionalBool values.
+// Enforced in AssertMatchingEnums.cpp.
+enum WebAXOptionalBool {
+ WebAXOptionalBoolUndefined = 0,
+ WebAXOptionalBoolTrue,
+ WebAXOptionalBoolFalse
+};
+
} // namespace blink
#endif
« no previous file with comments | « Source/web/WebAXObject.cpp ('k') | public/web/WebAXObject.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698