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

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

Issue 1952863003: Implemented the "aria-current" state on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed switch statements to handle NONE case. Created 4 years, 7 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/public/web/WebAXEnums.h ('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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 130
131 BLINK_EXPORT WebString accessKey() const; 131 BLINK_EXPORT WebString accessKey() const;
132 BLINK_EXPORT unsigned backgroundColor() const; 132 BLINK_EXPORT unsigned backgroundColor() const;
133 BLINK_EXPORT unsigned color() const; 133 BLINK_EXPORT unsigned color() const;
134 // Deprecated. 134 // Deprecated.
135 BLINK_EXPORT void colorValue(int& r, int& g, int& b) const; 135 BLINK_EXPORT void colorValue(int& r, int& g, int& b) const;
136 BLINK_EXPORT unsigned colorValue() const; 136 BLINK_EXPORT unsigned colorValue() const;
137 BLINK_EXPORT WebAXObject ariaActiveDescendant() const; 137 BLINK_EXPORT WebAXObject ariaActiveDescendant() const;
138 BLINK_EXPORT WebString ariaAutoComplete() const; 138 BLINK_EXPORT WebString ariaAutoComplete() const;
139 BLINK_EXPORT bool ariaControls(WebVector<WebAXObject>& controlsElements) con st; 139 BLINK_EXPORT bool ariaControls(WebVector<WebAXObject>& controlsElements) con st;
140 BLINK_EXPORT WebAXAriaCurrentState ariaCurrentState() const;
140 BLINK_EXPORT bool ariaFlowTo(WebVector<WebAXObject>& flowToElements) const; 141 BLINK_EXPORT bool ariaFlowTo(WebVector<WebAXObject>& flowToElements) const;
141 BLINK_EXPORT bool ariaHasPopup() const; 142 BLINK_EXPORT bool ariaHasPopup() const;
142 BLINK_EXPORT bool isEditable() const; 143 BLINK_EXPORT bool isEditable() const;
143 BLINK_EXPORT bool isMultiline() const; 144 BLINK_EXPORT bool isMultiline() const;
144 BLINK_EXPORT bool isRichlyEditable() const; 145 BLINK_EXPORT bool isRichlyEditable() const;
145 BLINK_EXPORT bool ariaOwns(WebVector<WebAXObject>& ownsElements) const; 146 BLINK_EXPORT bool ariaOwns(WebVector<WebAXObject>& ownsElements) const;
146 BLINK_EXPORT WebRect boundingBoxRect() const; 147 BLINK_EXPORT WebRect boundingBoxRect() const;
147 BLINK_EXPORT WebString fontFamily() const; 148 BLINK_EXPORT WebString fontFamily() const;
148 BLINK_EXPORT float fontSize() const; 149 BLINK_EXPORT float fontSize() const;
149 BLINK_EXPORT bool canvasHasFallbackContent() const; 150 BLINK_EXPORT bool canvasHasFallbackContent() const;
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
300 operator AXObject*() const; 301 operator AXObject*() const;
301 #endif 302 #endif
302 303
303 private: 304 private:
304 WebPrivatePtr<AXObject> m_private; 305 WebPrivatePtr<AXObject> m_private;
305 }; 306 };
306 307
307 } // namespace blink 308 } // namespace blink
308 309
309 #endif 310 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/public/web/WebAXEnums.h ('k') | ui/accessibility/ax_enums.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698