Index: chrome/common/extensions/api/automation.idl |
diff --git a/chrome/common/extensions/api/automation.idl b/chrome/common/extensions/api/automation.idl |
index cbcdb2a7eadd11233f7d913f03bee4209b87322a..5914462be8864455c33e007ccb1016b3ffd98306 100644 |
--- a/chrome/common/extensions/api/automation.idl |
+++ b/chrome/common/extensions/api/automation.idl |
@@ -30,12 +30,19 @@ |
// the root node, this will be undefined. |
long? index_in_parent; |
+ // Traversal. |
static object[] children(); |
static object parent(); |
static object firstChild(); |
static object lastChild(); |
static object previousSibling(); |
static object nextSibling(); |
+ |
+ // Actions. |
+ static void doDefault(); |
+ static void focus(); |
+ static void makeVisible(); |
+ static void setSelection(long startIndex, long endIndex); |
}; |
// The automation tree for a single page. |