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

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

Issue 2694903010: AX checked state changes (Closed)
Patch Set: git cl try Created 3 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 | « 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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 BLINK_EXPORT WebAXObject ParentObject() const; 120 BLINK_EXPORT WebAXObject ParentObject() const;
121 121
122 // Retrieve accessibility attributes that apply to only a small 122 // Retrieve accessibility attributes that apply to only a small
123 // fraction of WebAXObjects by passing an implementation of 123 // fraction of WebAXObjects by passing an implementation of
124 // WebAXSparseAttributeClient, which will be called with only the attributes 124 // WebAXSparseAttributeClient, which will be called with only the attributes
125 // that apply to this object. 125 // that apply to this object.
126 BLINK_EXPORT void GetSparseAXAttributes(WebAXSparseAttributeClient&) const; 126 BLINK_EXPORT void GetSparseAXAttributes(WebAXSparseAttributeClient&) const;
127 127
128 BLINK_EXPORT bool IsAnchor() const; 128 BLINK_EXPORT bool IsAnchor() const;
129 BLINK_EXPORT bool IsAriaReadOnly() const; 129 BLINK_EXPORT bool IsAriaReadOnly() const;
130 BLINK_EXPORT bool IsButtonStateMixed() const; 130 BLINK_EXPORT WebAXCheckedState CheckedState() const;
131 BLINK_EXPORT bool IsChecked() const; 131 BLINK_EXPORT bool IsCheckable() const;
132 BLINK_EXPORT bool IsClickable() const; 132 BLINK_EXPORT bool IsClickable() const;
133 BLINK_EXPORT bool IsCollapsed() const; 133 BLINK_EXPORT bool IsCollapsed() const;
134 BLINK_EXPORT bool IsControl() const; 134 BLINK_EXPORT bool IsControl() const;
135 BLINK_EXPORT bool IsEnabled() const; 135 BLINK_EXPORT bool IsEnabled() const;
136 BLINK_EXPORT WebAXExpanded IsExpanded() const; 136 BLINK_EXPORT WebAXExpanded IsExpanded() const;
137 BLINK_EXPORT bool IsFocused() const; 137 BLINK_EXPORT bool IsFocused() const;
138 BLINK_EXPORT bool IsHovered() const; 138 BLINK_EXPORT bool IsHovered() const;
139 BLINK_EXPORT bool IsLinked() const; 139 BLINK_EXPORT bool IsLinked() const;
140 BLINK_EXPORT bool IsLoaded() const; 140 BLINK_EXPORT bool IsLoaded() const;
141 BLINK_EXPORT bool IsModal() const; 141 BLINK_EXPORT bool IsModal() const;
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
358 operator AXObject*() const; 358 operator AXObject*() const;
359 #endif 359 #endif
360 360
361 private: 361 private:
362 WebPrivatePtr<AXObject> private_; 362 WebPrivatePtr<AXObject> private_;
363 }; 363 };
364 364
365 } // namespace blink 365 } // namespace blink
366 366
367 #endif 367 #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