| 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |