| OLD | NEW |
| 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 Loading... |
| 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 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 operator AXObject*() const; | 356 operator AXObject*() const; |
| 357 #endif | 357 #endif |
| 358 | 358 |
| 359 private: | 359 private: |
| 360 WebPrivatePtr<AXObject> m_private; | 360 WebPrivatePtr<AXObject> m_private; |
| 361 }; | 361 }; |
| 362 | 362 |
| 363 } // namespace blink | 363 } // namespace blink |
| 364 | 364 |
| 365 #endif | 365 #endif |
| OLD | NEW |