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

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

Issue 2447773002: Use setSequentialFocusNavigationStartingPoint in ChromeVox (Closed)
Patch Set: Links or controls Created 4 years, 2 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 2b8bbc0767b4f62333a199174b45282f4654e326..ce4d7994159fc3e433f23c0ff405e2ee65687a0b 100644
--- a/chrome/common/extensions/api/automation.idl
+++ b/chrome/common/extensions/api/automation.idl
@@ -216,20 +216,6 @@
visited
};
- // Actions that can be taken on an $(ref:automation.AutomationNode).
- enum ActionType {
- doDefault,
- hitTest,
- scrollToMakeVisible,
- scrollToPoint,
- setAccessibilityFocus,
- setFocus,
- setScrollOffset,
- setSelection,
- setValue,
- showContextMenu
- };
-
// Possible changes to the automation tree. For any given atomic change
// to the tree, each node that's added, removed, or changed, will appear
// in exactly one TreeChange, with one of these types.
@@ -592,6 +578,10 @@
// Sets selection within a text field.
static void setSelection(long startIndex, long endIndex);
+ // Clears focus and sets this node as the starting point for the next
+ // time the user presses Tab or Shift+Tab.
+ static void setSequentialFocusNavigationStartingPoint();
+
// Adds a listener for the given event type and event phase.
static void addEventListener(
EventType eventType, AutomationListener listener, boolean capture);

Powered by Google App Engine
This is Rietveld 408576698