| 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 namespace ui { | 7 namespace ui { |
| 8 enum AXEvent { | 8 enum AXEvent { |
| 9 activedescendantchanged, | 9 activedescendantchanged, |
| 10 alert, | 10 alert, |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 client, | 58 client, |
| 59 color_well, | 59 color_well, |
| 60 column_header, | 60 column_header, |
| 61 column, | 61 column, |
| 62 combo_box, | 62 combo_box, |
| 63 complementary, | 63 complementary, |
| 64 content_info, | 64 content_info, |
| 65 definition, | 65 definition, |
| 66 description_list_detail, | 66 description_list_detail, |
| 67 description_list_term, | 67 description_list_term, |
| 68 desktop, |
| 68 dialog, | 69 dialog, |
| 69 directory, | 70 directory, |
| 70 disclosure_triangle, | 71 disclosure_triangle, |
| 71 div, | 72 div, |
| 72 document, | 73 document, |
| 73 drawer, | 74 drawer, |
| 74 editable_text, | 75 editable_text, |
| 75 footer, | 76 footer, |
| 76 form, | 77 form, |
| 77 grid, | 78 grid, |
| (...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 ax_attr_word_ends | 342 ax_attr_word_ends |
| 342 }; | 343 }; |
| 343 | 344 |
| 344 [cpp_omit_enum_type] enum AXTextDirection { | 345 [cpp_omit_enum_type] enum AXTextDirection { |
| 345 ax_text_direction_lr, | 346 ax_text_direction_lr, |
| 346 ax_text_direction_rl, | 347 ax_text_direction_rl, |
| 347 ax_text_direction_tb, | 348 ax_text_direction_tb, |
| 348 ax_text_direction_bt | 349 ax_text_direction_bt |
| 349 }; | 350 }; |
| 350 }; | 351 }; |
| OLD | NEW |