OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012, Google Inc. All rights reserved. | 2 * Copyright (C) 2012, 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 | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * | 7 * |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 virtual bool isEmbeddedObject() const override final; | 98 virtual bool isEmbeddedObject() const override final; |
99 virtual bool isFieldset() const override final; | 99 virtual bool isFieldset() const override final; |
100 virtual bool isHeading() const override final; | 100 virtual bool isHeading() const override final; |
101 virtual bool isHovered() const override final; | 101 virtual bool isHovered() const override final; |
102 virtual bool isImage() const override final; | 102 virtual bool isImage() const override final; |
103 bool isImageButton() const; | 103 bool isImageButton() const; |
104 virtual bool isInputImage() const override final; | 104 virtual bool isInputImage() const override final; |
105 virtual bool isLink() const override final; | 105 virtual bool isLink() const override final; |
106 virtual bool isMenu() const override final; | 106 virtual bool isMenu() const override final; |
107 virtual bool isMenuButton() const override final; | 107 virtual bool isMenuButton() const override final; |
| 108 virtual bool isMeter() const override final; |
108 virtual bool isMultiSelectable() const override; | 109 virtual bool isMultiSelectable() const override; |
109 bool isNativeImage() const; | 110 bool isNativeImage() const; |
110 virtual bool isNativeTextControl() const override final; | 111 virtual bool isNativeTextControl() const override final; |
111 virtual bool isNonNativeTextControl() const override final; | 112 virtual bool isNonNativeTextControl() const override final; |
112 virtual bool isPasswordField() const override final; | 113 virtual bool isPasswordField() const override final; |
113 virtual bool isProgressIndicator() const override; | 114 virtual bool isProgressIndicator() const override; |
114 virtual bool isSlider() const override; | 115 virtual bool isSlider() const override; |
115 | 116 |
116 // Check object state. | 117 // Check object state. |
117 virtual bool isChecked() const override final; | 118 virtual bool isChecked() const override final; |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 void changeValueByPercent(float percentChange); | 203 void changeValueByPercent(float percentChange); |
203 float stepValueForRange() const; | 204 float stepValueForRange() const; |
204 AXObject* findChildWithTagName(const HTMLQualifiedName&) const; | 205 AXObject* findChildWithTagName(const HTMLQualifiedName&) const; |
205 }; | 206 }; |
206 | 207 |
207 DEFINE_AX_OBJECT_TYPE_CASTS(AXNodeObject, isAXNodeObject()); | 208 DEFINE_AX_OBJECT_TYPE_CASTS(AXNodeObject, isAXNodeObject()); |
208 | 209 |
209 } // namespace blink | 210 } // namespace blink |
210 | 211 |
211 #endif // AXNodeObject_h | 212 #endif // AXNodeObject_h |
OLD | NEW |