OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2008, 2009, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2008, 2009, 2011 Apple Inc. All rights reserved. |
3 * Copyright (C) 2008 Nuanti Ltd. | 3 * Copyright (C) 2008 Nuanti Ltd. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * | 8 * |
9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 EditableTextRole, | 85 EditableTextRole, |
86 EmbeddedObjectRole, | 86 EmbeddedObjectRole, |
87 FigcaptionRole, | 87 FigcaptionRole, |
88 FigureRole, | 88 FigureRole, |
89 FooterRole, | 89 FooterRole, |
90 FormRole, | 90 FormRole, |
91 GridRole, | 91 GridRole, |
92 GroupRole, | 92 GroupRole, |
93 GrowAreaRole, | 93 GrowAreaRole, |
94 HeadingRole, | 94 HeadingRole, |
| 95 IframePresentationalRole, |
95 IframeRole, | 96 IframeRole, |
96 IgnoredRole, | 97 IgnoredRole, |
97 ImageMapLinkRole, | 98 ImageMapLinkRole, |
98 ImageMapRole, | 99 ImageMapRole, |
99 ImageRole, | 100 ImageRole, |
100 InlineTextBoxRole, | 101 InlineTextBoxRole, |
101 LabelRole, | 102 LabelRole, |
102 LegendRole, | 103 LegendRole, |
103 LinkRole, | 104 LinkRole, |
104 ListBoxOptionRole, | 105 ListBoxOptionRole, |
(...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
612 // functions called here may only search up the tree (ancestors), not down. | 613 // functions called here may only search up the tree (ancestors), not down. |
613 void updateCachedAttributeValuesIfNeeded() const; | 614 void updateCachedAttributeValuesIfNeeded() const; |
614 }; | 615 }; |
615 | 616 |
616 #define DEFINE_AX_OBJECT_TYPE_CASTS(thisType, predicate) \ | 617 #define DEFINE_AX_OBJECT_TYPE_CASTS(thisType, predicate) \ |
617 DEFINE_TYPE_CASTS(thisType, AXObject, object, object->predicate, object.pred
icate) | 618 DEFINE_TYPE_CASTS(thisType, AXObject, object, object->predicate, object.pred
icate) |
618 | 619 |
619 } // namespace blink | 620 } // namespace blink |
620 | 621 |
621 #endif // AXObject_h | 622 #endif // AXObject_h |
OLD | NEW |