| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 WebAXEventHide, | 49 WebAXEventHide, |
| 50 WebAXEventHover, | 50 WebAXEventHover, |
| 51 WebAXEventInvalidStatusChanged, | 51 WebAXEventInvalidStatusChanged, |
| 52 WebAXEventLayoutComplete, | 52 WebAXEventLayoutComplete, |
| 53 WebAXEventLiveRegionChanged, | 53 WebAXEventLiveRegionChanged, |
| 54 WebAXEventLoadComplete, | 54 WebAXEventLoadComplete, |
| 55 WebAXEventLocationChanged, | 55 WebAXEventLocationChanged, |
| 56 WebAXEventMenuListItemSelected, | 56 WebAXEventMenuListItemSelected, |
| 57 WebAXEventMenuListItemUnselected, | 57 WebAXEventMenuListItemUnselected, |
| 58 WebAXEventMenuListValueChanged, | 58 WebAXEventMenuListValueChanged, |
| 59 WebAXEventMouseEntered, |
| 60 WebAXEventMouseExited, |
| 61 WebAXEventMouseMoved, |
| 62 WebAXEventMousePressed, |
| 63 WebAXEventMouseReleased, |
| 59 WebAXEventRowCollapsed, | 64 WebAXEventRowCollapsed, |
| 60 WebAXEventRowCountChanged, | 65 WebAXEventRowCountChanged, |
| 61 WebAXEventRowExpanded, | 66 WebAXEventRowExpanded, |
| 62 WebAXEventScrollPositionChanged, | 67 WebAXEventScrollPositionChanged, |
| 63 WebAXEventScrolledToAnchor, | 68 WebAXEventScrolledToAnchor, |
| 64 WebAXEventSelectedChildrenChanged, | 69 WebAXEventSelectedChildrenChanged, |
| 65 WebAXEventSelectedTextChanged, | 70 WebAXEventSelectedTextChanged, |
| 66 WebAXEventShow, | 71 WebAXEventShow, |
| 67 WebAXEventTextChanged, | 72 WebAXEventTextChanged, |
| 68 WebAXEventTextInserted, | 73 WebAXEventTextInserted, |
| (...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 WebAXDescriptionFromUninitialized = -1, | 300 WebAXDescriptionFromUninitialized = -1, |
| 296 WebAXDescriptionFromAttribute = 0, | 301 WebAXDescriptionFromAttribute = 0, |
| 297 WebAXDescriptionFromContents, | 302 WebAXDescriptionFromContents, |
| 298 WebAXDescriptionFromPlaceholder, | 303 WebAXDescriptionFromPlaceholder, |
| 299 WebAXDescriptionFromRelatedElement, | 304 WebAXDescriptionFromRelatedElement, |
| 300 }; | 305 }; |
| 301 | 306 |
| 302 } // namespace blink | 307 } // namespace blink |
| 303 | 308 |
| 304 #endif | 309 #endif |
| OLD | NEW |