Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(339)

Side by Side Diff: Source/core/accessibility/AXRenderObject.h

Issue 659563006: Add live region root to the cached properties of an AXObject. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Address feedback Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/accessibility/AXObject.cpp ('k') | Source/core/accessibility/AXRenderObject.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 virtual bool ariaHasPopup() const override; 119 virtual bool ariaHasPopup() const override;
120 virtual bool ariaRoleHasPresentationalChildren() const override; 120 virtual bool ariaRoleHasPresentationalChildren() const override;
121 virtual bool isPresentationalChildOfAriaRole() const override; 121 virtual bool isPresentationalChildOfAriaRole() const override;
122 virtual bool shouldFocusActiveDescendant() const override; 122 virtual bool shouldFocusActiveDescendant() const override;
123 virtual bool supportsARIADragging() const override; 123 virtual bool supportsARIADragging() const override;
124 virtual bool supportsARIADropping() const override; 124 virtual bool supportsARIADropping() const override;
125 virtual bool supportsARIAFlowTo() const override; 125 virtual bool supportsARIAFlowTo() const override;
126 virtual bool supportsARIAOwns() const override; 126 virtual bool supportsARIAOwns() const override;
127 127
128 // ARIA live-region features. 128 // ARIA live-region features.
129 virtual const AtomicString& ariaLiveRegionStatus() const override; 129 virtual const AtomicString& liveRegionStatus() const override;
130 virtual const AtomicString& ariaLiveRegionRelevant() const override; 130 virtual const AtomicString& liveRegionRelevant() const override;
131 virtual bool ariaLiveRegionAtomic() const override; 131 virtual bool liveRegionAtomic() const override;
132 virtual bool ariaLiveRegionBusy() const override; 132 virtual bool liveRegionBusy() const override;
133 133
134 // Accessibility Text. 134 // Accessibility Text.
135 virtual String textUnderElement() const override; 135 virtual String textUnderElement() const override;
136 136
137 // Accessibility Text - (To be deprecated). 137 // Accessibility Text - (To be deprecated).
138 virtual String helpText() const override; 138 virtual String helpText() const override;
139 139
140 // Location and click point in frame-relative coordinates. 140 // Location and click point in frame-relative coordinates.
141 virtual void markCachedElementRectDirty() const override; 141 virtual void markCachedElementRectDirty() const override;
142 virtual IntPoint clickPoint() override; 142 virtual IntPoint clickPoint() override;
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 VisibleSelection selection() const; 219 VisibleSelection selection() const;
220 int indexForVisiblePosition(const VisiblePosition&) const; 220 int indexForVisiblePosition(const VisiblePosition&) const;
221 void accessibilityChildrenFromAttribute(QualifiedName attr, AccessibilityChi ldrenVector&) const; 221 void accessibilityChildrenFromAttribute(QualifiedName attr, AccessibilityChi ldrenVector&) const;
222 }; 222 };
223 223
224 DEFINE_AX_OBJECT_TYPE_CASTS(AXRenderObject, isAXRenderObject()); 224 DEFINE_AX_OBJECT_TYPE_CASTS(AXRenderObject, isAXRenderObject());
225 225
226 } // namespace blink 226 } // namespace blink
227 227
228 #endif // AXRenderObject_h 228 #endif // AXRenderObject_h
OLDNEW
« no previous file with comments | « Source/core/accessibility/AXObject.cpp ('k') | Source/core/accessibility/AXRenderObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698