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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 WebAXEventCheckedStateChanged, | 45 WebAXEventCheckedStateChanged, |
46 WebAXEventChildrenChanged, | 46 WebAXEventChildrenChanged, |
47 WebAXEventFocus, | 47 WebAXEventFocus, |
48 WebAXEventHide, | 48 WebAXEventHide, |
49 WebAXEventInvalidStatusChanged, | 49 WebAXEventInvalidStatusChanged, |
50 WebAXEventLayoutComplete, | 50 WebAXEventLayoutComplete, |
51 WebAXEventLiveRegionChanged, | 51 WebAXEventLiveRegionChanged, |
52 WebAXEventLoadComplete, | 52 WebAXEventLoadComplete, |
53 WebAXEventLocationChanged, | 53 WebAXEventLocationChanged, |
54 WebAXEventMenuListItemSelected, | 54 WebAXEventMenuListItemSelected, |
| 55 WebAXEventMenuListItemUnselected, |
55 WebAXEventMenuListValueChanged, | 56 WebAXEventMenuListValueChanged, |
56 WebAXEventRowCollapsed, | 57 WebAXEventRowCollapsed, |
57 WebAXEventRowCountChanged, | 58 WebAXEventRowCountChanged, |
58 WebAXEventRowExpanded, | 59 WebAXEventRowExpanded, |
59 WebAXEventScrollPositionChanged, | 60 WebAXEventScrollPositionChanged, |
60 WebAXEventScrolledToAnchor, | 61 WebAXEventScrolledToAnchor, |
61 WebAXEventSelectedChildrenChanged, | 62 WebAXEventSelectedChildrenChanged, |
62 WebAXEventSelectedTextChanged, | 63 WebAXEventSelectedTextChanged, |
63 WebAXEventShow, | 64 WebAXEventShow, |
64 WebAXEventTextChanged, | 65 WebAXEventTextChanged, |
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 WebAXInvalidStateFalse, | 266 WebAXInvalidStateFalse, |
266 WebAXInvalidStateTrue, | 267 WebAXInvalidStateTrue, |
267 WebAXInvalidStateSpelling, | 268 WebAXInvalidStateSpelling, |
268 WebAXInvalidStateGrammar, | 269 WebAXInvalidStateGrammar, |
269 WebAXInvalidStateOther | 270 WebAXInvalidStateOther |
270 }; | 271 }; |
271 | 272 |
272 } // namespace blink | 273 } // namespace blink |
273 | 274 |
274 #endif | 275 #endif |
OLD | NEW |