| 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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 BLINK_EXPORT bool isAriaReadOnly() const; | 106 BLINK_EXPORT bool isAriaReadOnly() const; |
| 107 BLINK_EXPORT bool isButtonStateMixed() const; | 107 BLINK_EXPORT bool isButtonStateMixed() const; |
| 108 BLINK_EXPORT bool isChecked() const; | 108 BLINK_EXPORT bool isChecked() const; |
| 109 BLINK_EXPORT bool isClickable() const; | 109 BLINK_EXPORT bool isClickable() const; |
| 110 BLINK_EXPORT bool isCollapsed() const; | 110 BLINK_EXPORT bool isCollapsed() const; |
| 111 BLINK_EXPORT bool isControl() const; | 111 BLINK_EXPORT bool isControl() const; |
| 112 BLINK_EXPORT bool isEnabled() const; | 112 BLINK_EXPORT bool isEnabled() const; |
| 113 BLINK_EXPORT WebAXExpanded isExpanded() const; | 113 BLINK_EXPORT WebAXExpanded isExpanded() const; |
| 114 BLINK_EXPORT bool isFocused() const; | 114 BLINK_EXPORT bool isFocused() const; |
| 115 BLINK_EXPORT bool isHovered() const; | 115 BLINK_EXPORT bool isHovered() const; |
| 116 BLINK_EXPORT bool isIndeterminate() const; | |
| 117 BLINK_EXPORT bool isLinked() const; | 116 BLINK_EXPORT bool isLinked() const; |
| 118 BLINK_EXPORT bool isLoaded() const; | 117 BLINK_EXPORT bool isLoaded() const; |
| 119 BLINK_EXPORT bool isMultiSelectable() const; | 118 BLINK_EXPORT bool isMultiSelectable() const; |
| 120 BLINK_EXPORT bool isOffScreen() const; | 119 BLINK_EXPORT bool isOffScreen() const; |
| 121 BLINK_EXPORT bool isPasswordField() const; | 120 BLINK_EXPORT bool isPasswordField() const; |
| 122 BLINK_EXPORT bool isPressed() const; | 121 BLINK_EXPORT bool isPressed() const; |
| 123 BLINK_EXPORT bool isReadOnly() const; | 122 BLINK_EXPORT bool isReadOnly() const; |
| 124 BLINK_EXPORT bool isRequired() const; | 123 BLINK_EXPORT bool isRequired() const; |
| 125 BLINK_EXPORT bool isSelected() const; | 124 BLINK_EXPORT bool isSelected() const; |
| 126 BLINK_EXPORT bool isSelectedOptionActive() const; | 125 BLINK_EXPORT bool isSelectedOptionActive() const; |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 315 operator AXObject*() const; | 314 operator AXObject*() const; |
| 316 #endif | 315 #endif |
| 317 | 316 |
| 318 private: | 317 private: |
| 319 WebPrivatePtr<AXObject> m_private; | 318 WebPrivatePtr<AXObject> m_private; |
| 320 }; | 319 }; |
| 321 | 320 |
| 322 } // namespace blink | 321 } // namespace blink |
| 323 | 322 |
| 324 #endif | 323 #endif |
| OLD | NEW |