| 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);
|
|
|