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

Side by Side Diff: third_party/WebKit/public/web/WebAXObject.h

Issue 2054393002: Implemented IAccessible2 reverse relations. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed content_browsertests. Created 4 years, 5 months 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
« no previous file with comments | « third_party/WebKit/Source/web/WebAXObject.cpp ('k') | ui/accessibility/ax_enums.idl » ('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) 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 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 // 1-based position in set & Size of set. 202 // 1-based position in set & Size of set.
203 BLINK_EXPORT int posInSet() const; 203 BLINK_EXPORT int posInSet() const;
204 BLINK_EXPORT int setSize() const; 204 BLINK_EXPORT int setSize() const;
205 205
206 // Live regions. 206 // Live regions.
207 BLINK_EXPORT bool isInLiveRegion() const; 207 BLINK_EXPORT bool isInLiveRegion() const;
208 BLINK_EXPORT bool liveRegionAtomic() const; 208 BLINK_EXPORT bool liveRegionAtomic() const;
209 BLINK_EXPORT bool liveRegionBusy() const; 209 BLINK_EXPORT bool liveRegionBusy() const;
210 BLINK_EXPORT WebString liveRegionRelevant() const; 210 BLINK_EXPORT WebString liveRegionRelevant() const;
211 BLINK_EXPORT WebString liveRegionStatus() const; 211 BLINK_EXPORT WebString liveRegionStatus() const;
212 BLINK_EXPORT WebAXObject liveRegionRoot() const;
212 BLINK_EXPORT bool containerLiveRegionAtomic() const; 213 BLINK_EXPORT bool containerLiveRegionAtomic() const;
213 BLINK_EXPORT bool containerLiveRegionBusy() const; 214 BLINK_EXPORT bool containerLiveRegionBusy() const;
214 BLINK_EXPORT WebString containerLiveRegionRelevant() const; 215 BLINK_EXPORT WebString containerLiveRegionRelevant() const;
215 BLINK_EXPORT WebString containerLiveRegionStatus() const; 216 BLINK_EXPORT WebString containerLiveRegionStatus() const;
216 217
217 BLINK_EXPORT bool supportsRangeValue() const; 218 BLINK_EXPORT bool supportsRangeValue() const;
218 BLINK_EXPORT WebString valueDescription() const; 219 BLINK_EXPORT WebString valueDescription() const;
219 BLINK_EXPORT float valueForRange() const; 220 BLINK_EXPORT float valueForRange() const;
220 BLINK_EXPORT float maxValueForRange() const; 221 BLINK_EXPORT float maxValueForRange() const;
221 BLINK_EXPORT float minValueForRange() const; 222 BLINK_EXPORT float minValueForRange() const;
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
323 operator AXObject*() const; 324 operator AXObject*() const;
324 #endif 325 #endif
325 326
326 private: 327 private:
327 WebPrivatePtr<AXObject> m_private; 328 WebPrivatePtr<AXObject> m_private;
328 }; 329 };
329 330
330 } // namespace blink 331 } // namespace blink
331 332
332 #endif 333 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/WebAXObject.cpp ('k') | ui/accessibility/ax_enums.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698