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

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

Issue 1045693002: Expose multiline attribute from blink (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Reland Created 5 years, 8 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 | « public/web/WebAXEnums.h ('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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 114
115 BLINK_EXPORT WebString accessKey() const; 115 BLINK_EXPORT WebString accessKey() const;
116 BLINK_EXPORT WebAXObject ariaActiveDescendant() const; 116 BLINK_EXPORT WebAXObject ariaActiveDescendant() const;
117 BLINK_EXPORT WebString ariaAutoComplete() const; 117 BLINK_EXPORT WebString ariaAutoComplete() const;
118 BLINK_EXPORT bool ariaControls(WebVector<WebAXObject>& controlsElements) con st; 118 BLINK_EXPORT bool ariaControls(WebVector<WebAXObject>& controlsElements) con st;
119 BLINK_EXPORT bool ariaDescribedby(WebVector<WebAXObject>& describedbyElement s) const; 119 BLINK_EXPORT bool ariaDescribedby(WebVector<WebAXObject>& describedbyElement s) const;
120 BLINK_EXPORT WebString ariaDropEffect() const; 120 BLINK_EXPORT WebString ariaDropEffect() const;
121 BLINK_EXPORT bool ariaFlowTo(WebVector<WebAXObject>& flowToElements) const; 121 BLINK_EXPORT bool ariaFlowTo(WebVector<WebAXObject>& flowToElements) const;
122 BLINK_EXPORT bool ariaHasPopup() const; 122 BLINK_EXPORT bool ariaHasPopup() const;
123 BLINK_EXPORT bool ariaLabelledby(WebVector<WebAXObject>& labelledbyElements) const; 123 BLINK_EXPORT bool ariaLabelledby(WebVector<WebAXObject>& labelledbyElements) const;
124 BLINK_EXPORT bool isMultiline() const;
124 BLINK_EXPORT bool ariaOwns(WebVector<WebAXObject>& ownsElements) const; 125 BLINK_EXPORT bool ariaOwns(WebVector<WebAXObject>& ownsElements) const;
125 BLINK_EXPORT WebRect boundingBoxRect() const; 126 BLINK_EXPORT WebRect boundingBoxRect() const;
126 BLINK_EXPORT bool canvasHasFallbackContent() const; 127 BLINK_EXPORT bool canvasHasFallbackContent() const;
127 BLINK_EXPORT WebPoint clickPoint() const; 128 BLINK_EXPORT WebPoint clickPoint() const;
128 BLINK_EXPORT void colorValue(int& r, int& g, int& b) const; 129 BLINK_EXPORT void colorValue(int& r, int& g, int& b) const;
129 BLINK_EXPORT WebAXInvalidState invalidState() const; 130 BLINK_EXPORT WebAXInvalidState invalidState() const;
130 // Only used when invalidState() returns WebAXInvalidStateOther. 131 // Only used when invalidState() returns WebAXInvalidStateOther.
131 BLINK_EXPORT WebString ariaInvalidValue() const; 132 BLINK_EXPORT WebString ariaInvalidValue() const;
132 BLINK_EXPORT double estimatedLoadingProgress() const; 133 BLINK_EXPORT double estimatedLoadingProgress() const;
133 BLINK_EXPORT WebString helpText() const; 134 BLINK_EXPORT WebString helpText() const;
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 operator WTF::PassRefPtr<AXObject>() const; 236 operator WTF::PassRefPtr<AXObject>() const;
236 #endif 237 #endif
237 238
238 private: 239 private:
239 WebPrivatePtr<AXObject> m_private; 240 WebPrivatePtr<AXObject> m_private;
240 }; 241 };
241 242
242 } // namespace blink 243 } // namespace blink
243 244
244 #endif 245 #endif
OLDNEW
« no previous file with comments | « public/web/WebAXEnums.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698