| 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 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 WebAXRolePopUpButton, | 153 WebAXRolePopUpButton, |
| 154 WebAXRolePre, | 154 WebAXRolePre, |
| 155 WebAXRolePresentational, | 155 WebAXRolePresentational, |
| 156 WebAXRoleProgressIndicator, | 156 WebAXRoleProgressIndicator, |
| 157 WebAXRoleRadioButton, | 157 WebAXRoleRadioButton, |
| 158 WebAXRoleRadioGroup, | 158 WebAXRoleRadioGroup, |
| 159 WebAXRoleRegion, | 159 WebAXRoleRegion, |
| 160 WebAXRoleRootWebArea, | 160 WebAXRoleRootWebArea, |
| 161 WebAXRoleRowHeader, | 161 WebAXRoleRowHeader, |
| 162 WebAXRoleRow, | 162 WebAXRoleRow, |
| 163 WebAXRoleRuby, |
| 163 WebAXRoleRulerMarker, | 164 WebAXRoleRulerMarker, |
| 164 WebAXRoleRuler, | 165 WebAXRoleRuler, |
| 165 WebAXRoleSVGRoot, | 166 WebAXRoleSVGRoot, |
| 166 WebAXRoleScrollArea, | 167 WebAXRoleScrollArea, |
| 167 WebAXRoleScrollBar, | 168 WebAXRoleScrollBar, |
| 168 WebAXRoleSeamlessWebArea, | 169 WebAXRoleSeamlessWebArea, |
| 169 WebAXRoleSearch, | 170 WebAXRoleSearch, |
| 170 WebAXRoleSheet, | 171 WebAXRoleSheet, |
| 171 WebAXRoleSlider, | 172 WebAXRoleSlider, |
| 172 WebAXRoleSliderThumb, | 173 WebAXRoleSliderThumb, |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 // Enforced in AssertMatchingEnums.cpp. | 238 // Enforced in AssertMatchingEnums.cpp. |
| 238 enum WebAXExpanded { | 239 enum WebAXExpanded { |
| 239 WebAXExpandedUndefined = 0, | 240 WebAXExpandedUndefined = 0, |
| 240 WebAXExpandedCollapsed, | 241 WebAXExpandedCollapsed, |
| 241 WebAXExpandedExpanded | 242 WebAXExpandedExpanded |
| 242 }; | 243 }; |
| 243 | 244 |
| 244 } // namespace blink | 245 } // namespace blink |
| 245 | 246 |
| 246 #endif | 247 #endif |
| OLD | NEW |