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

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

Issue 2795083003: Add support for in-page links in ChromeVox. (Closed)
Patch Set: Address nit. 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 1452c107d290316a27eadeb01ec3bfda268090bd..b10bf511e21137e3af23554edaab4d7461ffc347 100644
--- a/chrome/common/extensions/api/automation.idl
+++ b/chrome/common/extensions/api/automation.idl
@@ -443,6 +443,9 @@
// applicable
AutomationNode? activeDescendant;
+ // The target of an in-page link.
+ AutomationNode? inPageLinkTarget;
+
//
// Link attributes.
//
@@ -759,7 +762,8 @@
// tree with a placeholder root node; listen for the "loadComplete" event to
// get a notification that the tree has fully loaded (the previous root node
// reference will stop working at or before this point).
- [nocompile] static void getTree(optional long tabId, RootCallback callback);
+ [nocompile] static void getTree(optional long tabId,
+ optional RootCallback callback);
// Get the automation tree for the whole desktop which consists of all on
// screen views. Note this API is currently only supported on Chrome OS.

Powered by Google App Engine
This is Rietveld 408576698