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. |
|
dmazzoni
2015/03/30 13:40:16
Don't forget to modify automation.idl too
| |
| 11 // | 11 // |
| 12 // Explanation of the comments next to these events: | 12 // Explanation of the comments next to these events: |
| 13 // | 13 // |
| 14 // Web: this event is only used in web content. Unless a specific platform | 14 // Web: this event is only used in web content. Unless a specific platform |
| 15 // is specified, it fires a native event on multiple platforms. | 15 // is specified, it fires a native event on multiple platforms. |
| 16 // | 16 // |
| 17 // Native: this event is only used in native UI. | 17 // Native: this event is only used in native UI. |
| 18 // | 18 // |
| 19 // Implicit: it would be cleaner if we just updated the AX node | 19 // Implicit: it would be cleaner if we just updated the AX node |
| 20 // and each platform fired the appropriate events to indicate which | 20 // and each platform fired the appropriate events to indicate which |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 201 enabled, // content only | 201 enabled, // content only |
| 202 expanded, | 202 expanded, |
| 203 focusable, | 203 focusable, |
| 204 focused, | 204 focused, |
| 205 haspopup, | 205 haspopup, |
| 206 horizontal, | 206 horizontal, |
| 207 hovered, | 207 hovered, |
| 208 indeterminate, | 208 indeterminate, |
| 209 invisible, | 209 invisible, |
| 210 linked, | 210 linked, |
| 211 multiline, | |
| 211 multiselectable, | 212 multiselectable, |
| 212 offscreen, | 213 offscreen, |
| 213 pressed, | 214 pressed, |
| 214 protected, | 215 protected, |
| 215 read_only, | 216 read_only, |
| 216 required, | 217 required, |
| 217 selectable, | 218 selectable, |
| 218 selected, | 219 selected, |
| 219 vertical, | 220 vertical, |
| 220 visited | 221 visited |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 412 }; | 413 }; |
| 413 | 414 |
| 414 [cpp_enum_prefix_override="ax"] enum AXSortDirection { | 415 [cpp_enum_prefix_override="ax"] enum AXSortDirection { |
| 415 sort_direction_unsorted, | 416 sort_direction_unsorted, |
| 416 sort_direction_ascending, | 417 sort_direction_ascending, |
| 417 sort_direction_descending, | 418 sort_direction_descending, |
| 418 sort_direction_other | 419 sort_direction_other |
| 419 }; | 420 }; |
| 420 | 421 |
| 421 }; | 422 }; |
| OLD | NEW |