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

Unified Diff: chrome/common/extensions/api/automation.idl

Issue 2694903010: AX checked state changes (Closed)
Patch Set: git cl try Created 3 years, 8 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: chrome/common/extensions/api/automation.idl
diff --git a/chrome/common/extensions/api/automation.idl b/chrome/common/extensions/api/automation.idl
index b10bf511e21137e3af23554edaab4d7461ffc347..08fc1863cfaf9ee96e452f2ff97e2c7ae86de3ca 100644
--- a/chrome/common/extensions/api/automation.idl
+++ b/chrome/common/extensions/api/automation.idl
@@ -200,7 +200,6 @@
// Describes characteristics of an $(ref:automation.AutomationNode).
enum StateType {
busy,
- checked,
collapsed,
default,
disabled,
@@ -638,8 +637,9 @@
// The language code for this subtree.
DOMString? language;
- // If a checkbox or toggle button is in the mixed state.
- boolean? buttonMixed;
+ // Tri-state describing checkbox or radio button:
+ // 'false' | 'true' | 'mixed'
+ DOMString? checked;
// The RGBA foreground color of this subtree, as an integer.
long? color;

Powered by Google App Engine
This is Rietveld 408576698