| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // The <code>chrome.automation</code> API allows developers to access the | 5 // The <code>chrome.automation</code> API allows developers to access the |
| 6 // automation (accessibility) tree for the browser. The tree resembles the DOM | 6 // automation (accessibility) tree for the browser. The tree resembles the DOM |
| 7 // tree, but only exposes the <em>semantic</em> structure of a page. It can be | 7 // tree, but only exposes the <em>semantic</em> structure of a page. It can be |
| 8 // used to programmatically interact with a page by examining names, roles, and | 8 // used to programmatically interact with a page by examining names, roles, and |
| 9 // states, listening for events, and performing actions on nodes. | 9 // states, listening for events, and performing actions on nodes. |
| 10 [nocompile] namespace automation { | 10 [nocompile] namespace automation { |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 protected, | 209 protected, |
| 210 readOnly, | 210 readOnly, |
| 211 required, | 211 required, |
| 212 richlyEditable, | 212 richlyEditable, |
| 213 selectable, | 213 selectable, |
| 214 selected, | 214 selected, |
| 215 vertical, | 215 vertical, |
| 216 visited | 216 visited |
| 217 }; | 217 }; |
| 218 | 218 |
| 219 // Actions that can be taken on an $(ref:automation.AutomationNode). |
| 220 enum ActionType { |
| 221 doDefault, |
| 222 hitTest, |
| 223 scrollToMakeVisible, |
| 224 scrollToPoint, |
| 225 setAccessibilityFocus, |
| 226 setFocus, |
| 227 setScrollOffset, |
| 228 setSelection, |
| 229 setValue, |
| 230 showContextMenu |
| 231 }; |
| 232 |
| 219 // Possible changes to the automation tree. For any given atomic change | 233 // Possible changes to the automation tree. For any given atomic change |
| 220 // to the tree, each node that's added, removed, or changed, will appear | 234 // to the tree, each node that's added, removed, or changed, will appear |
| 221 // in exactly one TreeChange, with one of these types. | 235 // in exactly one TreeChange, with one of these types. |
| 222 // | 236 // |
| 223 // | 237 // |
| 224 // nodeCreated means that this node was added to the tree and its parent is | 238 // nodeCreated means that this node was added to the tree and its parent is |
| 225 // new as well, so it's just one node in a new subtree that was added. | 239 // new as well, so it's just one node in a new subtree that was added. |
| 226 enum TreeChangeType { | 240 enum TreeChangeType { |
| 227 /** | 241 /** |
| 228 * This node was added to the tree and its parent is new as well, | 242 * This node was added to the tree and its parent is new as well, |
| (...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 652 // Everything in the tree between the two node/offset pairs gets included | 666 // Everything in the tree between the two node/offset pairs gets included |
| 653 // in the selection. The anchor is where the user started the selection, | 667 // in the selection. The anchor is where the user started the selection, |
| 654 // while the focus is the point at which the selection gets extended | 668 // while the focus is the point at which the selection gets extended |
| 655 // e.g. when dragging with a mouse or using the keyboard. For nodes with | 669 // e.g. when dragging with a mouse or using the keyboard. For nodes with |
| 656 // the role staticText, the offset gives the character offset within | 670 // the role staticText, the offset gives the character offset within |
| 657 // the value where the selection starts or ends, respectively. | 671 // the value where the selection starts or ends, respectively. |
| 658 [nocompile] static void setDocumentSelection( | 672 [nocompile] static void setDocumentSelection( |
| 659 SetDocumentSelectionParams params); | 673 SetDocumentSelectionParams params); |
| 660 }; | 674 }; |
| 661 }; | 675 }; |
| OLD | NEW |