| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2008 Apple 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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 | 111 |
| 112 // Inline text boxes. | 112 // Inline text boxes. |
| 113 void LoadInlineTextBoxes() override; | 113 void LoadInlineTextBoxes() override; |
| 114 AXObjectImpl* NextOnLine() const override; | 114 AXObjectImpl* NextOnLine() const override; |
| 115 AXObjectImpl* PreviousOnLine() const override; | 115 AXObjectImpl* PreviousOnLine() const override; |
| 116 | 116 |
| 117 // Properties of interactive elements. | 117 // Properties of interactive elements. |
| 118 String StringValue() const override; | 118 String StringValue() const override; |
| 119 | 119 |
| 120 // ARIA attributes. | 120 // ARIA attributes. |
| 121 void AriaDescribedbyElements(AXObjectVector&) const override; | 121 void AriaDescribedbyElements(AXObjectImplVector&) const override; |
| 122 void AriaLabelledbyElements(AXObjectVector&) const override; | 122 void AriaLabelledbyElements(AXObjectImplVector&) const override; |
| 123 void AriaOwnsElements(AXObjectVector&) const override; | 123 void AriaOwnsElements(AXObjectImplVector&) const override; |
| 124 | 124 |
| 125 bool AriaHasPopup() const override; | 125 bool AriaHasPopup() const override; |
| 126 bool AriaRoleHasPresentationalChildren() const override; | 126 bool AriaRoleHasPresentationalChildren() const override; |
| 127 AXObjectImpl* AncestorForWhichThisIsAPresentationalChild() const override; | 127 AXObjectImpl* AncestorForWhichThisIsAPresentationalChild() const override; |
| 128 bool SupportsARIADragging() const override; | 128 bool SupportsARIADragging() const override; |
| 129 bool SupportsARIADropping() const override; | 129 bool SupportsARIADropping() const override; |
| 130 bool SupportsARIAFlowTo() const override; | 130 bool SupportsARIAFlowTo() const override; |
| 131 bool SupportsARIAOwns() const override; | 131 bool SupportsARIAOwns() const override; |
| 132 | 132 |
| 133 // ARIA live-region features. | 133 // ARIA live-region features. |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 AXRange TextControlSelection() const; | 216 AXRange TextControlSelection() const; |
| 217 int IndexForVisiblePosition(const VisiblePosition&) const; | 217 int IndexForVisiblePosition(const VisiblePosition&) const; |
| 218 AXLayoutObject* GetUnignoredObjectFromNode(Node&) const; | 218 AXLayoutObject* GetUnignoredObjectFromNode(Node&) const; |
| 219 }; | 219 }; |
| 220 | 220 |
| 221 DEFINE_AX_OBJECT_TYPE_CASTS(AXLayoutObject, IsAXLayoutObject()); | 221 DEFINE_AX_OBJECT_TYPE_CASTS(AXLayoutObject, IsAXLayoutObject()); |
| 222 | 222 |
| 223 } // namespace blink | 223 } // namespace blink |
| 224 | 224 |
| 225 #endif // AXLayoutObject_h | 225 #endif // AXLayoutObject_h |
| OLD | NEW |