| 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 document, | 98 document, |
| 99 embedded_object, | 99 embedded_object, |
| 100 figcaption, | 100 figcaption, |
| 101 figure, | 101 figure, |
| 102 footer, | 102 footer, |
| 103 form, | 103 form, |
| 104 grid, | 104 grid, |
| 105 group, | 105 group, |
| 106 heading, | 106 heading, |
| 107 iframe, | 107 iframe, |
| 108 iframe_presentational, |
| 108 ignored, | 109 ignored, |
| 109 image_map_link, | 110 image_map_link, |
| 110 image_map, | 111 image_map, |
| 111 image, | 112 image, |
| 112 inline_text_box, | 113 inline_text_box, |
| 113 label_text, | 114 label_text, |
| 114 legend, | 115 legend, |
| 115 link, | 116 link, |
| 116 list_box_option, | 117 list_box_option, |
| 117 list_box, | 118 list_box, |
| (...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 378 word_ends | 379 word_ends |
| 379 }; | 380 }; |
| 380 | 381 |
| 381 [cpp_enum_prefix_override="ax"] enum AXTextDirection { | 382 [cpp_enum_prefix_override="ax"] enum AXTextDirection { |
| 382 text_direction_lr, | 383 text_direction_lr, |
| 383 text_direction_rl, | 384 text_direction_rl, |
| 384 text_direction_tb, | 385 text_direction_tb, |
| 385 text_direction_bt | 386 text_direction_bt |
| 386 }; | 387 }; |
| 387 }; | 388 }; |
| OLD | NEW |