| 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 WebAXRoleEmbeddedObject, | 107 WebAXRoleEmbeddedObject, |
| 108 WebAXRoleFigcaption, | 108 WebAXRoleFigcaption, |
| 109 WebAXRoleFigure, | 109 WebAXRoleFigure, |
| 110 WebAXRoleFooter, | 110 WebAXRoleFooter, |
| 111 WebAXRoleForm, | 111 WebAXRoleForm, |
| 112 WebAXRoleGrid, | 112 WebAXRoleGrid, |
| 113 WebAXRoleGroup, | 113 WebAXRoleGroup, |
| 114 WebAXRoleGrowArea, | 114 WebAXRoleGrowArea, |
| 115 WebAXRoleHeading, | 115 WebAXRoleHeading, |
| 116 WebAXRoleHelpTag, | 116 WebAXRoleHelpTag, |
| 117 WebAXRoleHorizontalRule, | |
| 118 WebAXRoleIframe, | 117 WebAXRoleIframe, |
| 119 WebAXRoleIgnored, | 118 WebAXRoleIgnored, |
| 120 WebAXRoleImageMapLink, | 119 WebAXRoleImageMapLink, |
| 121 WebAXRoleImageMap, | 120 WebAXRoleImageMap, |
| 122 WebAXRoleImage, | 121 WebAXRoleImage, |
| 123 WebAXRoleIncrementor, | 122 WebAXRoleIncrementor, |
| 124 WebAXRoleInlineTextBox, | 123 WebAXRoleInlineTextBox, |
| 125 WebAXRoleLabel, | 124 WebAXRoleLabel, |
| 126 WebAXRoleLegend, | 125 WebAXRoleLegend, |
| 127 WebAXRoleLink, | 126 WebAXRoleLink, |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 enum WebAXTextDirection { | 228 enum WebAXTextDirection { |
| 230 WebAXTextDirectionLR, | 229 WebAXTextDirectionLR, |
| 231 WebAXTextDirectionRL, | 230 WebAXTextDirectionRL, |
| 232 WebAXTextDirectionTB, | 231 WebAXTextDirectionTB, |
| 233 WebAXTextDirectionBT | 232 WebAXTextDirectionBT |
| 234 }; | 233 }; |
| 235 | 234 |
| 236 } // namespace blink | 235 } // namespace blink |
| 237 | 236 |
| 238 #endif | 237 #endif |
| OLD | NEW |