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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
132 WebAXRoleList, | 132 WebAXRoleList, |
133 WebAXRoleLog, | 133 WebAXRoleLog, |
134 WebAXRoleMain, | 134 WebAXRoleMain, |
135 WebAXRoleMarquee, | 135 WebAXRoleMarquee, |
136 WebAXRoleMathElement, | 136 WebAXRoleMathElement, |
137 WebAXRoleMath, | 137 WebAXRoleMath, |
138 WebAXRoleMatte, | 138 WebAXRoleMatte, |
139 WebAXRoleMenuBar, | 139 WebAXRoleMenuBar, |
140 WebAXRoleMenuButton, | 140 WebAXRoleMenuButton, |
141 WebAXRoleMenuItem, | 141 WebAXRoleMenuItem, |
142 WebAXRoleMenuItemCheckBox, | |
dmazzoni
2014/10/10 05:42:51
I just realized that you previously added WebAXRol
| |
143 WebAXRoleMenuItemRadio, | |
142 WebAXRoleMenuListOption, | 144 WebAXRoleMenuListOption, |
143 WebAXRoleMenuListPopup, | 145 WebAXRoleMenuListPopup, |
144 WebAXRoleMenu, | 146 WebAXRoleMenu, |
145 WebAXRoleNavigation, | 147 WebAXRoleNavigation, |
146 WebAXRoleNone, | 148 WebAXRoleNone, |
147 WebAXRoleNote, | 149 WebAXRoleNote, |
148 WebAXRoleOutline, | 150 WebAXRoleOutline, |
149 WebAXRoleParagraph, | 151 WebAXRoleParagraph, |
150 WebAXRolePopUpButton, | 152 WebAXRolePopUpButton, |
151 WebAXRolePresentational, | 153 WebAXRolePresentational, |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
225 enum WebAXTextDirection { | 227 enum WebAXTextDirection { |
226 WebAXTextDirectionLR, | 228 WebAXTextDirectionLR, |
227 WebAXTextDirectionRL, | 229 WebAXTextDirectionRL, |
228 WebAXTextDirectionTB, | 230 WebAXTextDirectionTB, |
229 WebAXTextDirectionBT | 231 WebAXTextDirectionBT |
230 }; | 232 }; |
231 | 233 |
232 } // namespace blink | 234 } // namespace blink |
233 | 235 |
234 #endif | 236 #endif |
OLD | NEW |