| 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 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 doc_doctype, | 226 doc_doctype, |
| 227 | 227 |
| 228 // Attributes that could apply to any node. | 228 // Attributes that could apply to any node. |
| 229 access_key, | 229 access_key, |
| 230 action, | 230 action, |
| 231 auto_complete, | 231 auto_complete, |
| 232 container_live_relevant, | 232 container_live_relevant, |
| 233 container_live_status, | 233 container_live_status, |
| 234 description, | 234 description, |
| 235 display, | 235 display, |
| 236 dropeffect, |
| 236 help, | 237 help, |
| 237 html_tag, | 238 html_tag, |
| 238 // Only used when invalid_state == invalid_state_other. | 239 // Only used when invalid_state == invalid_state_other. |
| 239 aria_invalid_value, | 240 aria_invalid_value, |
| 240 name, | 241 name, |
| 241 live_relevant, | 242 live_relevant, |
| 242 live_status, | 243 live_status, |
| 243 placeholder, | 244 placeholder, |
| 244 role, | 245 role, |
| 245 shortcut, | 246 shortcut, |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 401 | 402 |
| 402 [cpp_enum_prefix_override="ax"] enum AXInvalidState { | 403 [cpp_enum_prefix_override="ax"] enum AXInvalidState { |
| 403 invalid_state_false, | 404 invalid_state_false, |
| 404 invalid_state_true, | 405 invalid_state_true, |
| 405 invalid_state_spelling, | 406 invalid_state_spelling, |
| 406 invalid_state_grammar, | 407 invalid_state_grammar, |
| 407 invalid_state_other | 408 invalid_state_other |
| 408 }; | 409 }; |
| 409 | 410 |
| 410 }; | 411 }; |
| OLD | NEW |