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 28 matching lines...) Expand all Loading... |
39 enum WebAXEvent { | 39 enum WebAXEvent { |
40 WebAXEventActiveDescendantChanged, | 40 WebAXEventActiveDescendantChanged, |
41 WebAXEventAlert, | 41 WebAXEventAlert, |
42 WebAXEventAriaAttributeChanged, | 42 WebAXEventAriaAttributeChanged, |
43 WebAXEventAutocorrectionOccured, | 43 WebAXEventAutocorrectionOccured, |
44 WebAXEventBlur, | 44 WebAXEventBlur, |
45 WebAXEventCheckedStateChanged, | 45 WebAXEventCheckedStateChanged, |
46 WebAXEventChildrenChanged, | 46 WebAXEventChildrenChanged, |
47 WebAXEventFocus, | 47 WebAXEventFocus, |
48 WebAXEventHide, | 48 WebAXEventHide, |
| 49 WebAXEventHover, |
49 WebAXEventInvalidStatusChanged, | 50 WebAXEventInvalidStatusChanged, |
50 WebAXEventLayoutComplete, | 51 WebAXEventLayoutComplete, |
51 WebAXEventLiveRegionChanged, | 52 WebAXEventLiveRegionChanged, |
52 WebAXEventLoadComplete, | 53 WebAXEventLoadComplete, |
53 WebAXEventLocationChanged, | 54 WebAXEventLocationChanged, |
54 WebAXEventMenuListItemSelected, | 55 WebAXEventMenuListItemSelected, |
55 WebAXEventMenuListItemUnselected, | 56 WebAXEventMenuListItemUnselected, |
56 WebAXEventMenuListValueChanged, | 57 WebAXEventMenuListValueChanged, |
57 WebAXEventRowCollapsed, | 58 WebAXEventRowCollapsed, |
58 WebAXEventRowCountChanged, | 59 WebAXEventRowCountChanged, |
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
288 // because on some platforms this determines how the accessible description | 289 // because on some platforms this determines how the accessible description |
289 // is exposed. | 290 // is exposed. |
290 enum WebAXDescriptionFrom { | 291 enum WebAXDescriptionFrom { |
291 WebAXDescriptionFromPlaceholder, | 292 WebAXDescriptionFromPlaceholder, |
292 WebAXDescriptionFromRelatedElement | 293 WebAXDescriptionFromRelatedElement |
293 }; | 294 }; |
294 | 295 |
295 } // namespace blink | 296 } // namespace blink |
296 | 297 |
297 #endif | 298 #endif |
OLD | NEW |