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

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

Issue 203753002: Implement actions for Automation API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Initial patch. Created 6 years, 9 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 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.

Powered by Google App Engine
This is Rietveld 408576698