Chromium Code Reviews| 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 // These should be kept in sync with third_party/WebKit/public/web/WebAXEnums.h | 5 // These should be kept in sync with third_party/WebKit/public/web/WebAXEnums.h |
| 6 // until the Chromium and Blink trees are merged. | 6 // until the Chromium and Blink trees are merged. |
| 7 [camel_case_enum_to_string=true] namespace ui { | 7 [camel_case_enum_to_string=true] namespace ui { |
| 8 | 8 |
| 9 // For new entries to the following three enums, also add to | 9 // For new entries to the following three enums, also add to |
| 10 // chrome/common/extensions/api/automation.idl. | 10 // chrome/common/extensions/api/automation.idl. |
| (...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 338 // If this is set, all of the other fields in this struct should | 338 // If this is set, all of the other fields in this struct should |
| 339 // be ignored and only the locations should change. | 339 // be ignored and only the locations should change. |
| 340 update_location_only, | 340 update_location_only, |
| 341 | 341 |
| 342 // Set on a canvas element if it has fallback content. | 342 // Set on a canvas element if it has fallback content. |
| 343 canvas_has_fallback, | 343 canvas_has_fallback, |
| 344 | 344 |
| 345 // Set if this node is the host of an external AXTree, for | 345 // Set if this node is the host of an external AXTree, for |
| 346 // example a web view that's a child of a native view, or a | 346 // example a web view that's a child of a native view, or a |
| 347 // web iframe that's the child of another web frame. | 347 // web iframe that's the child of another web frame. |
| 348 is_ax_tree_host | 348 is_ax_tree_host, |
| 349 | |
| 350 // grabbed attributes | |
|
dmazzoni
2015/01/27 06:59:41
Make it a short sentence, like:
Set if this node
je_julie(Not used)
2015/01/27 16:00:29
Done.
| |
| 351 grabbed | |
| 349 }; | 352 }; |
| 350 | 353 |
| 351 [cpp_enum_prefix_override="ax_attr"] enum AXIntListAttribute { | 354 [cpp_enum_prefix_override="ax_attr"] enum AXIntListAttribute { |
| 352 // Ids of nodes that are children of this node logically, but are | 355 // Ids of nodes that are children of this node logically, but are |
| 353 // not children of this node in the tree structure. As an example, | 356 // not children of this node in the tree structure. As an example, |
| 354 // a table cell is a child of a row, and an 'indirect' child of a | 357 // a table cell is a child of a row, and an 'indirect' child of a |
| 355 // column. | 358 // column. |
| 356 indirect_child_ids, | 359 indirect_child_ids, |
| 357 | 360 |
| 358 // Relationships between this element and other elements. | 361 // Relationships between this element and other elements. |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 397 | 400 |
| 398 [cpp_enum_prefix_override="ax"] enum AXInvalidState { | 401 [cpp_enum_prefix_override="ax"] enum AXInvalidState { |
| 399 invalid_state_false, | 402 invalid_state_false, |
| 400 invalid_state_true, | 403 invalid_state_true, |
| 401 invalid_state_spelling, | 404 invalid_state_spelling, |
| 402 invalid_state_grammar, | 405 invalid_state_grammar, |
| 403 invalid_state_other | 406 invalid_state_other |
| 404 }; | 407 }; |
| 405 | 408 |
| 406 }; | 409 }; |
| OLD | NEW |