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

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

Issue 730113003: Introduce new API orientation() to expose aria-orientation correctly. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: updating condition for TreeGridRole Created 6 years 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
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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 BLINK_EXPORT bool isAnchor() const; 88 BLINK_EXPORT bool isAnchor() const;
89 BLINK_EXPORT WebAXOptionalBool isAriaGrabbed() const; 89 BLINK_EXPORT WebAXOptionalBool isAriaGrabbed() const;
90 BLINK_EXPORT bool isAriaReadOnly() const; 90 BLINK_EXPORT bool isAriaReadOnly() const;
91 BLINK_EXPORT bool isButtonStateMixed() const; 91 BLINK_EXPORT bool isButtonStateMixed() const;
92 BLINK_EXPORT bool isChecked() const; 92 BLINK_EXPORT bool isChecked() const;
93 BLINK_EXPORT bool isClickable() const; 93 BLINK_EXPORT bool isClickable() const;
94 BLINK_EXPORT bool isCollapsed() const; 94 BLINK_EXPORT bool isCollapsed() const;
95 BLINK_EXPORT bool isControl() const; 95 BLINK_EXPORT bool isControl() const;
96 BLINK_EXPORT bool isEnabled() const; 96 BLINK_EXPORT bool isEnabled() const;
97 BLINK_EXPORT WebAXExpanded isExpanded() const; 97 BLINK_EXPORT WebAXExpanded isExpanded() const;
98 BLINK_EXPORT WebAXOrientation orientation() const;
98 BLINK_EXPORT bool isFocused() const; 99 BLINK_EXPORT bool isFocused() const;
99 BLINK_EXPORT bool isHovered() const; 100 BLINK_EXPORT bool isHovered() const;
100 BLINK_EXPORT bool isIndeterminate() const; 101 BLINK_EXPORT bool isIndeterminate() const;
101 BLINK_EXPORT bool isLinked() const; 102 BLINK_EXPORT bool isLinked() const;
102 BLINK_EXPORT bool isLoaded() const; 103 BLINK_EXPORT bool isLoaded() const;
103 BLINK_EXPORT bool isMultiSelectable() const; 104 BLINK_EXPORT bool isMultiSelectable() const;
104 BLINK_EXPORT bool isOffScreen() const; 105 BLINK_EXPORT bool isOffScreen() const;
105 BLINK_EXPORT bool isPasswordField() const; 106 BLINK_EXPORT bool isPasswordField() const;
106 BLINK_EXPORT bool isPressed() const; 107 BLINK_EXPORT bool isPressed() const;
107 BLINK_EXPORT bool isReadOnly() const; 108 BLINK_EXPORT bool isReadOnly() const;
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 operator WTF::PassRefPtr<AXObject>() const; 226 operator WTF::PassRefPtr<AXObject>() const;
226 #endif 227 #endif
227 228
228 private: 229 private:
229 WebPrivatePtr<AXObject> m_private; 230 WebPrivatePtr<AXObject> m_private;
230 }; 231 };
231 232
232 } // namespace blink 233 } // namespace blink
233 234
234 #endif 235 #endif
OLDNEW
« Source/modules/accessibility/AXScrollbar.cpp ('K') | « public/web/WebAXEnums.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698