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

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

Issue 1156353003: Added ability to distinguished between rich and plain text editables on accessibility objects. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Renamed to isRichlyEditable. Created 5 years, 6 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 | « Source/web/WebAXObject.cpp ('k') | no next file » | 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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 // Deprecated. 133 // Deprecated.
134 BLINK_EXPORT void colorValue(int& r, int& g, int& b) const; 134 BLINK_EXPORT void colorValue(int& r, int& g, int& b) const;
135 BLINK_EXPORT unsigned colorValue() const; 135 BLINK_EXPORT unsigned colorValue() const;
136 BLINK_EXPORT WebAXObject ariaActiveDescendant() const; 136 BLINK_EXPORT WebAXObject ariaActiveDescendant() const;
137 BLINK_EXPORT WebString ariaAutoComplete() const; 137 BLINK_EXPORT WebString ariaAutoComplete() const;
138 BLINK_EXPORT bool ariaControls(WebVector<WebAXObject>& controlsElements) con st; 138 BLINK_EXPORT bool ariaControls(WebVector<WebAXObject>& controlsElements) con st;
139 BLINK_EXPORT WebString ariaDropEffect() const; 139 BLINK_EXPORT WebString ariaDropEffect() const;
140 BLINK_EXPORT bool ariaFlowTo(WebVector<WebAXObject>& flowToElements) const; 140 BLINK_EXPORT bool ariaFlowTo(WebVector<WebAXObject>& flowToElements) const;
141 BLINK_EXPORT bool ariaHasPopup() const; 141 BLINK_EXPORT bool ariaHasPopup() const;
142 BLINK_EXPORT bool isMultiline() const; 142 BLINK_EXPORT bool isMultiline() const;
143 BLINK_EXPORT bool isRichlyEditable() const;
143 BLINK_EXPORT bool ariaOwns(WebVector<WebAXObject>& ownsElements) const; 144 BLINK_EXPORT bool ariaOwns(WebVector<WebAXObject>& ownsElements) const;
144 BLINK_EXPORT WebRect boundingBoxRect() const; 145 BLINK_EXPORT WebRect boundingBoxRect() 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;
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 operator WTF::PassRefPtr<AXObject>() const; 305 operator WTF::PassRefPtr<AXObject>() const;
305 #endif 306 #endif
306 307
307 private: 308 private:
308 WebPrivatePtr<AXObject> m_private; 309 WebPrivatePtr<AXObject> m_private;
309 }; 310 };
310 311
311 } // namespace blink 312 } // namespace blink
312 313
313 #endif 314 #endif
OLDNEW
« no previous file with comments | « Source/web/WebAXObject.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698