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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 menuListOption, | 128 menuListOption, |
129 menuListPopup, | 129 menuListPopup, |
130 menu, | 130 menu, |
131 meter, | 131 meter, |
132 navigation, | 132 navigation, |
133 note, | 133 note, |
134 outline, | 134 outline, |
135 pane, | 135 pane, |
136 paragraph, | 136 paragraph, |
137 popUpButton, | 137 popUpButton, |
| 138 pre, |
138 presentational, | 139 presentational, |
139 progressIndicator, | 140 progressIndicator, |
140 radioButton, | 141 radioButton, |
141 radioGroup, | 142 radioGroup, |
142 region, | 143 region, |
143 rootWebArea, | 144 rootWebArea, |
144 rowHeader, | 145 rowHeader, |
145 row, | 146 row, |
146 rulerMarker, | 147 rulerMarker, |
147 ruler, | 148 ruler, |
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
329 // tree with a placeholder root node; listen for the "loadComplete" event to | 330 // tree with a placeholder root node; listen for the "loadComplete" event to |
330 // get a notification that the tree has fully loaded (the previous root node | 331 // get a notification that the tree has fully loaded (the previous root node |
331 // reference will stop working at or before this point). | 332 // reference will stop working at or before this point). |
332 [nocompile] static void getTree(optional long tabId, RootCallback callback); | 333 [nocompile] static void getTree(optional long tabId, RootCallback callback); |
333 | 334 |
334 // Get the automation tree for the whole desktop which consists of all on | 335 // Get the automation tree for the whole desktop which consists of all on |
335 // screen views. Note this API is currently only supported on Chrome OS. | 336 // screen views. Note this API is currently only supported on Chrome OS. |
336 [nocompile] static void getDesktop(RootCallback callback); | 337 [nocompile] static void getDesktop(RootCallback callback); |
337 }; | 338 }; |
338 }; | 339 }; |
OLD | NEW |