| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 WebAXRoleMath, | 136 WebAXRoleMath, |
| 137 WebAXRoleMatte, | 137 WebAXRoleMatte, |
| 138 WebAXRoleMenuBar, | 138 WebAXRoleMenuBar, |
| 139 WebAXRoleMenuButton, | 139 WebAXRoleMenuButton, |
| 140 WebAXRoleMenuItem, | 140 WebAXRoleMenuItem, |
| 141 WebAXRoleMenuItemCheckBox, | 141 WebAXRoleMenuItemCheckBox, |
| 142 WebAXRoleMenuItemRadio, | 142 WebAXRoleMenuItemRadio, |
| 143 WebAXRoleMenuListOption, | 143 WebAXRoleMenuListOption, |
| 144 WebAXRoleMenuListPopup, | 144 WebAXRoleMenuListPopup, |
| 145 WebAXRoleMenu, | 145 WebAXRoleMenu, |
| 146 WebAXRoleMeter, |
| 146 WebAXRoleNavigation, | 147 WebAXRoleNavigation, |
| 147 WebAXRoleNone, | 148 WebAXRoleNone, |
| 148 WebAXRoleNote, | 149 WebAXRoleNote, |
| 149 WebAXRoleOutline, | 150 WebAXRoleOutline, |
| 150 WebAXRoleParagraph, | 151 WebAXRoleParagraph, |
| 151 WebAXRolePopUpButton, | 152 WebAXRolePopUpButton, |
| 152 WebAXRolePresentational, | 153 WebAXRolePresentational, |
| 153 WebAXRoleProgressIndicator, | 154 WebAXRoleProgressIndicator, |
| 154 WebAXRoleRadioButton, | 155 WebAXRoleRadioButton, |
| 155 WebAXRoleRadioGroup, | 156 WebAXRoleRadioGroup, |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 enum WebAXTextDirection { | 227 enum WebAXTextDirection { |
| 227 WebAXTextDirectionLR, | 228 WebAXTextDirectionLR, |
| 228 WebAXTextDirectionRL, | 229 WebAXTextDirectionRL, |
| 229 WebAXTextDirectionTB, | 230 WebAXTextDirectionTB, |
| 230 WebAXTextDirectionBT | 231 WebAXTextDirectionBT |
| 231 }; | 232 }; |
| 232 | 233 |
| 233 } // namespace blink | 234 } // namespace blink |
| 234 | 235 |
| 235 #endif | 236 #endif |
| OLD | NEW |