| 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 BLINK_EXPORT WebAXObject parentObject() const; | 90 BLINK_EXPORT WebAXObject parentObject() const; |
| 91 | 91 |
| 92 BLINK_EXPORT bool isAnchor() const; | 92 BLINK_EXPORT bool isAnchor() const; |
| 93 BLINK_EXPORT bool isAriaReadOnly() const; | 93 BLINK_EXPORT bool isAriaReadOnly() const; |
| 94 BLINK_EXPORT bool isButtonStateMixed() const; | 94 BLINK_EXPORT bool isButtonStateMixed() const; |
| 95 BLINK_EXPORT bool isChecked() const; | 95 BLINK_EXPORT bool isChecked() const; |
| 96 BLINK_EXPORT bool isClickable() const; | 96 BLINK_EXPORT bool isClickable() const; |
| 97 BLINK_EXPORT bool isCollapsed() const; | 97 BLINK_EXPORT bool isCollapsed() const; |
| 98 BLINK_EXPORT bool isControl() const; | 98 BLINK_EXPORT bool isControl() const; |
| 99 BLINK_EXPORT bool isEnabled() const; | 99 BLINK_EXPORT bool isEnabled() const; |
| 100 BLINK_EXPORT bool isExpanded() const; |
| 100 BLINK_EXPORT bool isFocused() const; | 101 BLINK_EXPORT bool isFocused() const; |
| 101 BLINK_EXPORT bool isHovered() const; | 102 BLINK_EXPORT bool isHovered() const; |
| 102 BLINK_EXPORT bool isIndeterminate() const; | 103 BLINK_EXPORT bool isIndeterminate() const; |
| 103 BLINK_EXPORT bool isLinked() const; | 104 BLINK_EXPORT bool isLinked() const; |
| 104 BLINK_EXPORT bool isLoaded() const; | 105 BLINK_EXPORT bool isLoaded() const; |
| 105 BLINK_EXPORT bool isMultiSelectable() const; | 106 BLINK_EXPORT bool isMultiSelectable() const; |
| 106 BLINK_EXPORT bool isOffScreen() const; | 107 BLINK_EXPORT bool isOffScreen() const; |
| 107 BLINK_EXPORT bool isPasswordField() const; | 108 BLINK_EXPORT bool isPasswordField() const; |
| 108 BLINK_EXPORT bool isPressed() const; | 109 BLINK_EXPORT bool isPressed() const; |
| 109 BLINK_EXPORT bool isReadOnly() const; | 110 BLINK_EXPORT bool isReadOnly() const; |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 operator WTF::PassRefPtr<AXObject>() const; | 216 operator WTF::PassRefPtr<AXObject>() const; |
| 216 #endif | 217 #endif |
| 217 | 218 |
| 218 private: | 219 private: |
| 219 WebPrivatePtr<AXObject> m_private; | 220 WebPrivatePtr<AXObject> m_private; |
| 220 }; | 221 }; |
| 221 | 222 |
| 222 } // namespace blink | 223 } // namespace blink |
| 223 | 224 |
| 224 #endif | 225 #endif |
| OLD | NEW |