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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
151 BLINK_EXPORT float valueForRange() const; | 151 BLINK_EXPORT float valueForRange() const; |
152 BLINK_EXPORT float maxValueForRange() const; | 152 BLINK_EXPORT float maxValueForRange() const; |
153 BLINK_EXPORT float minValueForRange() const; | 153 BLINK_EXPORT float minValueForRange() const; |
154 | 154 |
155 BLINK_EXPORT WebNode node() const; | 155 BLINK_EXPORT WebNode node() const; |
156 BLINK_EXPORT WebDocument document() const; | 156 BLINK_EXPORT WebDocument document() const; |
157 BLINK_EXPORT bool hasComputedStyle() const; | 157 BLINK_EXPORT bool hasComputedStyle() const; |
158 BLINK_EXPORT WebString computedStyleDisplay() const; | 158 BLINK_EXPORT WebString computedStyleDisplay() const; |
159 BLINK_EXPORT bool accessibilityIsIgnored() const; | 159 BLINK_EXPORT bool accessibilityIsIgnored() const; |
160 BLINK_EXPORT bool lineBreaks(WebVector<int>&) const; | 160 BLINK_EXPORT bool lineBreaks(WebVector<int>&) const; |
| 161 BLINK_EXPORT WebString textInputType() const; |
161 | 162 |
162 // Actions | 163 // Actions |
163 BLINK_EXPORT WebString actionVerb() const; // The verb corresponding to perf
ormDefaultAction. | 164 BLINK_EXPORT WebString actionVerb() const; // The verb corresponding to perf
ormDefaultAction. |
164 BLINK_EXPORT bool canDecrement() const; | 165 BLINK_EXPORT bool canDecrement() const; |
165 BLINK_EXPORT bool canIncrement() const; | 166 BLINK_EXPORT bool canIncrement() const; |
166 BLINK_EXPORT bool canPress() const; | 167 BLINK_EXPORT bool canPress() const; |
167 BLINK_EXPORT bool canSetFocusAttribute() const; | 168 BLINK_EXPORT bool canSetFocusAttribute() const; |
168 BLINK_EXPORT bool canSetSelectedAttribute() const; | 169 BLINK_EXPORT bool canSetSelectedAttribute() const; |
169 BLINK_EXPORT bool canSetValueAttribute() const; | 170 BLINK_EXPORT bool canSetValueAttribute() const; |
170 BLINK_EXPORT bool performDefaultAction() const; | 171 BLINK_EXPORT bool performDefaultAction() const; |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 operator WTF::PassRefPtr<AXObject>() const; | 215 operator WTF::PassRefPtr<AXObject>() const; |
215 #endif | 216 #endif |
216 | 217 |
217 private: | 218 private: |
218 WebPrivatePtr<AXObject> m_private; | 219 WebPrivatePtr<AXObject> m_private; |
219 }; | 220 }; |
220 | 221 |
221 } // namespace blink | 222 } // namespace blink |
222 | 223 |
223 #endif | 224 #endif |
OLD | NEW |