OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 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 16 matching lines...) Expand all Loading... |
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 */ | 29 */ |
30 | 30 |
31 #ifndef WebAccessibilityNotification_h | 31 #ifndef WebAccessibilityNotification_h |
32 #define WebAccessibilityNotification_h | 32 #define WebAccessibilityNotification_h |
33 | 33 |
34 namespace WebKit { | 34 namespace WebKit { |
35 | 35 |
36 // These values must match WebCore::AXObjectCache::AXNotification values. | 36 // These values must match WebCore::AXObjectCache::AXNotification values. |
37 // Enforced in AssertMatchingEnums.cpp. | 37 // DEPRECATED: these will be replaced with the enums defined in |
| 38 // WebAccessibilityEnums.h (http://crbug.com/269034). |
38 enum WebAccessibilityNotification { | 39 enum WebAccessibilityNotification { |
39 WebAccessibilityNotificationActiveDescendantChanged, | 40 WebAccessibilityNotificationActiveDescendantChanged, |
| 41 WebAccessibilityNotificationAlert, |
| 42 WebAccessibilityNotificationAriaAttributeChanged, |
40 WebAccessibilityNotificationAutocorrectionOccured, | 43 WebAccessibilityNotificationAutocorrectionOccured, |
| 44 WebAccessibilityNotificationBlur, |
41 WebAccessibilityNotificationCheckedStateChanged, | 45 WebAccessibilityNotificationCheckedStateChanged, |
42 WebAccessibilityNotificationChildrenChanged, | 46 WebAccessibilityNotificationChildrenChanged, |
43 WebAccessibilityNotificationFocusedUIElementChanged, | 47 WebAccessibilityNotificationFocusedUIElementChanged, |
| 48 WebAccessibilityNotificationHide, |
| 49 WebAccessibilityNotificationInvalidStatusChanged, |
44 WebAccessibilityNotificationLayoutComplete, | 50 WebAccessibilityNotificationLayoutComplete, |
| 51 WebAccessibilityNotificationLiveRegionChanged, |
45 WebAccessibilityNotificationLoadComplete, | 52 WebAccessibilityNotificationLoadComplete, |
| 53 WebAccessibilityNotificationLocationChanged, |
| 54 WebAccessibilityNotificationMenuListItemSelected, |
| 55 WebAccessibilityNotificationMenuListValueChanged, |
| 56 WebAccessibilityNotificationRowCollapsed, |
| 57 WebAccessibilityNotificationRowCountChanged, |
| 58 WebAccessibilityNotificationRowExpanded, |
| 59 WebAccessibilityNotificationScrolledToAnchor, |
46 WebAccessibilityNotificationSelectedChildrenChanged, | 60 WebAccessibilityNotificationSelectedChildrenChanged, |
47 WebAccessibilityNotificationSelectedTextChanged, | 61 WebAccessibilityNotificationSelectedTextChanged, |
48 WebAccessibilityNotificationValueChanged, | 62 WebAccessibilityNotificationShow, |
49 WebAccessibilityNotificationScrolledToAnchor, | |
50 WebAccessibilityNotificationLiveRegionChanged, | |
51 WebAccessibilityNotificationMenuListItemSelected, | |
52 WebAccessibilityNotificationMenuListValueChanged, | |
53 WebAccessibilityNotificationRowCountChanged, | |
54 WebAccessibilityNotificationRowCollapsed, | |
55 WebAccessibilityNotificationRowExpanded, | |
56 WebAccessibilityNotificationInvalidStatusChanged, | |
57 WebAccessibilityNotificationTextChanged, | 63 WebAccessibilityNotificationTextChanged, |
58 WebAccessibilityNotificationAriaAttributeChanged | 64 WebAccessibilityNotificationTextInserted, |
| 65 WebAccessibilityNotificationTextRemoved, |
| 66 WebAccessibilityNotificationValueChanged |
59 }; | 67 }; |
60 | 68 |
61 } // namespace WebKit | 69 } // namespace WebKit |
62 | 70 |
63 #endif // WebAccessibilityNotification_h | 71 #endif // WebAccessibilityNotification_h |
OLD | NEW |