| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012, Google Inc. All rights reserved. | 2 * Copyright (C) 2012, 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 | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 void computeAriaOwnsChildren(HeapVector<Member<AXObject>>& ownedChildren) co
nst; | 202 void computeAriaOwnsChildren(HeapVector<Member<AXObject>>& ownedChildren) co
nst; |
| 203 | 203 |
| 204 private: | 204 private: |
| 205 RawPtrWillBeMember<Node> m_node; | 205 RawPtrWillBeMember<Node> m_node; |
| 206 | 206 |
| 207 bool isNativeCheckboxInMixedState() const; | 207 bool isNativeCheckboxInMixedState() const; |
| 208 String textFromDescendants(AXObjectSet& visited, bool recursive) const overr
ide; | 208 String textFromDescendants(AXObjectSet& visited, bool recursive) const overr
ide; |
| 209 String nativeTextAlternative(AXObjectSet& visited, AXNameFrom&, AXRelatedObj
ectVector*, NameSources*, bool* foundTextAlternative) const; | 209 String nativeTextAlternative(AXObjectSet& visited, AXNameFrom&, AXRelatedObj
ectVector*, NameSources*, bool* foundTextAlternative) const; |
| 210 float stepValueForRange() const; | 210 float stepValueForRange() const; |
| 211 bool isDescendantOfElementType(const HTMLQualifiedName& tagName) const; | 211 bool isDescendantOfElementType(const HTMLQualifiedName& tagName) const; |
| 212 int positionInRadioGroup() const; |
| 213 int sizeOfRadioGroup() const; |
| 212 }; | 214 }; |
| 213 | 215 |
| 214 } // namespace blink | 216 } // namespace blink |
| 215 | 217 |
| 216 #endif // AXNodeObject_h | 218 #endif // AXNodeObject_h |
| OLD | NEW |