| 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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 [cpp_enum_prefix_override="ax_attr"] enum AXStringAttribute { | 218 [cpp_enum_prefix_override="ax_attr"] enum AXStringAttribute { |
| 219 // Document attributes. | 219 // Document attributes. |
| 220 doc_url, | 220 doc_url, |
| 221 doc_title, | 221 doc_title, |
| 222 doc_mimetype, | 222 doc_mimetype, |
| 223 doc_doctype, | 223 doc_doctype, |
| 224 | 224 |
| 225 // Attributes that could apply to any node. | 225 // Attributes that could apply to any node. |
| 226 access_key, | 226 access_key, |
| 227 action, | 227 action, |
| 228 auto_complete, |
| 228 container_live_relevant, | 229 container_live_relevant, |
| 229 container_live_status, | 230 container_live_status, |
| 230 description, | 231 description, |
| 231 display, | 232 display, |
| 232 help, | 233 help, |
| 233 html_tag, | 234 html_tag, |
| 234 name, | 235 name, |
| 235 live_relevant, | 236 live_relevant, |
| 236 live_status, | 237 live_status, |
| 237 role, | 238 role, |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 377 word_ends | 378 word_ends |
| 378 }; | 379 }; |
| 379 | 380 |
| 380 [cpp_enum_prefix_override="ax"] enum AXTextDirection { | 381 [cpp_enum_prefix_override="ax"] enum AXTextDirection { |
| 381 text_direction_lr, | 382 text_direction_lr, |
| 382 text_direction_rl, | 383 text_direction_rl, |
| 383 text_direction_tb, | 384 text_direction_tb, |
| 384 text_direction_bt | 385 text_direction_bt |
| 385 }; | 386 }; |
| 386 }; | 387 }; |
| OLD | NEW |