| 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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 WebAXRoleLegend, | 120 WebAXRoleLegend, |
| 121 WebAXRoleLink, | 121 WebAXRoleLink, |
| 122 WebAXRoleListBoxOption, | 122 WebAXRoleListBoxOption, |
| 123 WebAXRoleListBox, | 123 WebAXRoleListBox, |
| 124 WebAXRoleListItem, | 124 WebAXRoleListItem, |
| 125 WebAXRoleListMarker, | 125 WebAXRoleListMarker, |
| 126 WebAXRoleList, | 126 WebAXRoleList, |
| 127 WebAXRoleLog, | 127 WebAXRoleLog, |
| 128 WebAXRoleMain, | 128 WebAXRoleMain, |
| 129 WebAXRoleMarquee, | 129 WebAXRoleMarquee, |
| 130 WebAXRoleMathElement, | |
| 131 WebAXRoleMath, | 130 WebAXRoleMath, |
| 132 WebAXRoleMenuBar, | 131 WebAXRoleMenuBar, |
| 133 WebAXRoleMenuButton, | 132 WebAXRoleMenuButton, |
| 134 WebAXRoleMenuItem, | 133 WebAXRoleMenuItem, |
| 135 WebAXRoleMenuItemCheckBox, | 134 WebAXRoleMenuItemCheckBox, |
| 136 WebAXRoleMenuItemRadio, | 135 WebAXRoleMenuItemRadio, |
| 137 WebAXRoleMenuListOption, | 136 WebAXRoleMenuListOption, |
| 138 WebAXRoleMenuListPopup, | 137 WebAXRoleMenuListPopup, |
| 139 WebAXRoleMenu, | 138 WebAXRoleMenu, |
| 140 WebAXRoleMeter, | 139 WebAXRoleMeter, |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 // Enforced in AssertMatchingEnums.cpp. | 242 // Enforced in AssertMatchingEnums.cpp. |
| 244 enum WebAXOrientation { | 243 enum WebAXOrientation { |
| 245 WebAXOrientationUndefined = 0, | 244 WebAXOrientationUndefined = 0, |
| 246 WebAXOrientationVertical, | 245 WebAXOrientationVertical, |
| 247 WebAXOrientationHorizontal, | 246 WebAXOrientationHorizontal, |
| 248 }; | 247 }; |
| 249 | 248 |
| 250 } // namespace blink | 249 } // namespace blink |
| 251 | 250 |
| 252 #endif | 251 #endif |
| OLD | NEW |