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

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

Issue 736943002: Support aria-grabbed attribute. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Update enum name Created 6 years, 1 month 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 // so always call isDetached if any other WebCore code has run. 79 // so always call isDetached if any other WebCore code has run.
80 BLINK_EXPORT bool updateLayoutAndCheckValidity(); 80 BLINK_EXPORT bool updateLayoutAndCheckValidity();
81 81
82 BLINK_EXPORT WebString accessibilityDescription() const; 82 BLINK_EXPORT WebString accessibilityDescription() const;
83 BLINK_EXPORT unsigned childCount() const; 83 BLINK_EXPORT unsigned childCount() const;
84 84
85 BLINK_EXPORT WebAXObject childAt(unsigned) const; 85 BLINK_EXPORT WebAXObject childAt(unsigned) const;
86 BLINK_EXPORT WebAXObject parentObject() const; 86 BLINK_EXPORT WebAXObject parentObject() const;
87 87
88 BLINK_EXPORT bool isAnchor() const; 88 BLINK_EXPORT bool isAnchor() const;
89 BLINK_EXPORT WebAXOptionalBool isAriaGrabbed() const;
89 BLINK_EXPORT bool isAriaReadOnly() const; 90 BLINK_EXPORT bool isAriaReadOnly() const;
90 BLINK_EXPORT bool isButtonStateMixed() const; 91 BLINK_EXPORT bool isButtonStateMixed() const;
91 BLINK_EXPORT bool isChecked() const; 92 BLINK_EXPORT bool isChecked() const;
92 BLINK_EXPORT bool isClickable() const; 93 BLINK_EXPORT bool isClickable() const;
93 BLINK_EXPORT bool isCollapsed() const; 94 BLINK_EXPORT bool isCollapsed() const;
94 BLINK_EXPORT bool isControl() const; 95 BLINK_EXPORT bool isControl() const;
95 BLINK_EXPORT bool isEnabled() const; 96 BLINK_EXPORT bool isEnabled() const;
96 BLINK_EXPORT WebAXExpanded isExpanded() const; 97 BLINK_EXPORT WebAXExpanded isExpanded() const;
97 BLINK_EXPORT bool isFocused() const; 98 BLINK_EXPORT bool isFocused() const;
98 BLINK_EXPORT bool isHovered() const; 99 BLINK_EXPORT bool isHovered() const;
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 operator WTF::PassRefPtr<AXObject>() const; 221 operator WTF::PassRefPtr<AXObject>() const;
221 #endif 222 #endif
222 223
223 private: 224 private:
224 WebPrivatePtr<AXObject> m_private; 225 WebPrivatePtr<AXObject> m_private;
225 }; 226 };
226 227
227 } // namespace blink 228 } // namespace blink
228 229
229 #endif 230 #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