OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 // FIXME: Deprecated - remove once callers use updateLayoutAndCheckValidity,
instead. | 83 // FIXME: Deprecated - remove once callers use updateLayoutAndCheckValidity,
instead. |
84 BLINK_EXPORT bool updateBackingStoreAndCheckValidity(); | 84 BLINK_EXPORT bool updateBackingStoreAndCheckValidity(); |
85 | 85 |
86 BLINK_EXPORT WebString accessibilityDescription() const; | 86 BLINK_EXPORT WebString accessibilityDescription() const; |
87 BLINK_EXPORT unsigned childCount() const; | 87 BLINK_EXPORT unsigned childCount() const; |
88 | 88 |
89 BLINK_EXPORT WebAXObject childAt(unsigned) const; | 89 BLINK_EXPORT WebAXObject childAt(unsigned) const; |
90 BLINK_EXPORT WebAXObject parentObject() const; | 90 BLINK_EXPORT WebAXObject parentObject() const; |
91 | 91 |
92 BLINK_EXPORT bool isAnchor() const; | 92 BLINK_EXPORT bool isAnchor() const; |
| 93 BLINK_EXPORT WebAXDefined isAriaGrabbed() const; |
93 BLINK_EXPORT bool isAriaReadOnly() const; | 94 BLINK_EXPORT bool isAriaReadOnly() const; |
94 BLINK_EXPORT bool isButtonStateMixed() const; | 95 BLINK_EXPORT bool isButtonStateMixed() const; |
95 BLINK_EXPORT bool isChecked() const; | 96 BLINK_EXPORT bool isChecked() const; |
96 BLINK_EXPORT bool isClickable() const; | 97 BLINK_EXPORT bool isClickable() const; |
97 BLINK_EXPORT bool isCollapsed() const; | 98 BLINK_EXPORT bool isCollapsed() const; |
98 BLINK_EXPORT bool isControl() const; | 99 BLINK_EXPORT bool isControl() const; |
99 BLINK_EXPORT bool isEnabled() const; | 100 BLINK_EXPORT bool isEnabled() const; |
100 BLINK_EXPORT WebAXExpanded isExpanded() const; | 101 BLINK_EXPORT WebAXExpanded isExpanded() const; |
101 BLINK_EXPORT bool isFocused() const; | 102 BLINK_EXPORT bool isFocused() const; |
102 BLINK_EXPORT bool isHovered() const; | 103 BLINK_EXPORT bool isHovered() const; |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
224 operator WTF::PassRefPtr<AXObject>() const; | 225 operator WTF::PassRefPtr<AXObject>() const; |
225 #endif | 226 #endif |
226 | 227 |
227 private: | 228 private: |
228 WebPrivatePtr<AXObject> m_private; | 229 WebPrivatePtr<AXObject> m_private; |
229 }; | 230 }; |
230 | 231 |
231 } // namespace blink | 232 } // namespace blink |
232 | 233 |
233 #endif | 234 #endif |
OLD | NEW |