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

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

Issue 1768753003: Implemented the reporting of text style and language information on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed test expectations. Created 4 years, 9 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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 BLINK_EXPORT WebAXObject ariaActiveDescendant() const; 135 BLINK_EXPORT WebAXObject ariaActiveDescendant() const;
136 BLINK_EXPORT WebString ariaAutoComplete() const; 136 BLINK_EXPORT WebString ariaAutoComplete() const;
137 BLINK_EXPORT bool ariaControls(WebVector<WebAXObject>& controlsElements) con st; 137 BLINK_EXPORT bool ariaControls(WebVector<WebAXObject>& controlsElements) con st;
138 BLINK_EXPORT bool ariaFlowTo(WebVector<WebAXObject>& flowToElements) const; 138 BLINK_EXPORT bool ariaFlowTo(WebVector<WebAXObject>& flowToElements) const;
139 BLINK_EXPORT bool ariaHasPopup() const; 139 BLINK_EXPORT bool ariaHasPopup() const;
140 BLINK_EXPORT bool isEditable() const; 140 BLINK_EXPORT bool isEditable() const;
141 BLINK_EXPORT bool isMultiline() const; 141 BLINK_EXPORT bool isMultiline() const;
142 BLINK_EXPORT bool isRichlyEditable() const; 142 BLINK_EXPORT bool isRichlyEditable() const;
143 BLINK_EXPORT bool ariaOwns(WebVector<WebAXObject>& ownsElements) const; 143 BLINK_EXPORT bool ariaOwns(WebVector<WebAXObject>& ownsElements) const;
144 BLINK_EXPORT WebRect boundingBoxRect() const; 144 BLINK_EXPORT WebRect boundingBoxRect() const;
145 BLINK_EXPORT WebString fontFamily() const;
145 BLINK_EXPORT float fontSize() const; 146 BLINK_EXPORT float fontSize() const;
146 BLINK_EXPORT bool canvasHasFallbackContent() const; 147 BLINK_EXPORT bool canvasHasFallbackContent() const;
147 BLINK_EXPORT WebPoint clickPoint() const; 148 BLINK_EXPORT WebPoint clickPoint() const;
148 BLINK_EXPORT WebAXInvalidState invalidState() const; 149 BLINK_EXPORT WebAXInvalidState invalidState() const;
149 // Only used when invalidState() returns WebAXInvalidStateOther. 150 // Only used when invalidState() returns WebAXInvalidStateOther.
150 BLINK_EXPORT WebString ariaInvalidValue() const; 151 BLINK_EXPORT WebString ariaInvalidValue() const;
151 BLINK_EXPORT double estimatedLoadingProgress() const; 152 BLINK_EXPORT double estimatedLoadingProgress() const;
152 BLINK_EXPORT int headingLevel() const; 153 BLINK_EXPORT int headingLevel() const;
153 BLINK_EXPORT int hierarchicalLevel() const; 154 BLINK_EXPORT int hierarchicalLevel() const;
154 BLINK_EXPORT WebAXObject hitTest(const WebPoint&) const; 155 BLINK_EXPORT WebAXObject hitTest(const WebPoint&) const;
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
294 operator AXObject*() const; 295 operator AXObject*() const;
295 #endif 296 #endif
296 297
297 private: 298 private:
298 WebPrivatePtr<AXObject> m_private; 299 WebPrivatePtr<AXObject> m_private;
299 }; 300 };
300 301
301 } // namespace blink 302 } // namespace blink
302 303
303 #endif 304 #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