| 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 // TODO(nektar): Migrate entire file to Mojoq. | 5 // TODO(nektar): Migrate entire file to Mojoq. |
| 6 // These should be kept in sync with third_party/WebKit/public/web/WebAXEnums.h | 6 // These should be kept in sync with third_party/WebKit/public/web/WebAXEnums.h |
| 7 // until the Chromium and Blink trees are merged. | 7 // until the Chromium and Blink trees are merged. |
| 8 [camel_case_enum_to_string=true] namespace ui { | 8 [camel_case_enum_to_string=true] namespace ui { |
| 9 | 9 |
| 10 // For new entries to the following four enums, also add to | 10 // For new entries to the following four enums, also add to |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 article, | 86 article, |
| 87 audio, | 87 audio, |
| 88 banner, | 88 banner, |
| 89 blockquote, | 89 blockquote, |
| 90 // TODO(nektar): Remove busy_indicator because it's used nowhere. | 90 // TODO(nektar): Remove busy_indicator because it's used nowhere. |
| 91 busy_indicator, | 91 busy_indicator, |
| 92 button, | 92 button, |
| 93 button_drop_down, // Not used on Web. | 93 button_drop_down, // Not used on Web. |
| 94 canvas, | 94 canvas, |
| 95 caption, | 95 caption, |
| 96 caret, |
| 96 cell, | 97 cell, |
| 97 check_box, | 98 check_box, |
| 98 client, | 99 client, |
| 99 color_well, | 100 color_well, |
| 100 column_header, | 101 column_header, |
| 101 column, | 102 column, |
| 102 combo_box, | 103 combo_box, |
| 103 complementary, | 104 complementary, |
| 104 content_info, | 105 content_info, |
| 105 date, | 106 date, |
| (...skipping 556 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 662 // First node is before the second one. | 663 // First node is before the second one. |
| 663 before, | 664 before, |
| 664 | 665 |
| 665 // Nodes are the same. | 666 // Nodes are the same. |
| 666 equal, | 667 equal, |
| 667 | 668 |
| 668 // First node is after the second one. | 669 // First node is after the second one. |
| 669 after | 670 after |
| 670 }; | 671 }; |
| 671 }; | 672 }; |
| OLD | NEW |