| 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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 // 1-based position in set & Size of set. | 198 // 1-based position in set & Size of set. |
| 199 BLINK_EXPORT int posInSet() const; | 199 BLINK_EXPORT int posInSet() const; |
| 200 BLINK_EXPORT int setSize() const; | 200 BLINK_EXPORT int setSize() const; |
| 201 | 201 |
| 202 // Live regions. | 202 // Live regions. |
| 203 BLINK_EXPORT bool isInLiveRegion() const; | 203 BLINK_EXPORT bool isInLiveRegion() const; |
| 204 BLINK_EXPORT bool liveRegionAtomic() const; | 204 BLINK_EXPORT bool liveRegionAtomic() const; |
| 205 BLINK_EXPORT bool liveRegionBusy() const; | 205 BLINK_EXPORT bool liveRegionBusy() const; |
| 206 BLINK_EXPORT WebString liveRegionRelevant() const; | 206 BLINK_EXPORT WebString liveRegionRelevant() const; |
| 207 BLINK_EXPORT WebString liveRegionStatus() const; | 207 BLINK_EXPORT WebString liveRegionStatus() const; |
| 208 BLINK_EXPORT WebAXObject liveRegionRoot() const; |
| 208 BLINK_EXPORT bool containerLiveRegionAtomic() const; | 209 BLINK_EXPORT bool containerLiveRegionAtomic() const; |
| 209 BLINK_EXPORT bool containerLiveRegionBusy() const; | 210 BLINK_EXPORT bool containerLiveRegionBusy() const; |
| 210 BLINK_EXPORT WebString containerLiveRegionRelevant() const; | 211 BLINK_EXPORT WebString containerLiveRegionRelevant() const; |
| 211 BLINK_EXPORT WebString containerLiveRegionStatus() const; | 212 BLINK_EXPORT WebString containerLiveRegionStatus() const; |
| 212 | 213 |
| 213 BLINK_EXPORT bool supportsRangeValue() const; | 214 BLINK_EXPORT bool supportsRangeValue() const; |
| 214 BLINK_EXPORT WebString valueDescription() const; | 215 BLINK_EXPORT WebString valueDescription() const; |
| 215 BLINK_EXPORT float valueForRange() const; | 216 BLINK_EXPORT float valueForRange() const; |
| 216 BLINK_EXPORT float maxValueForRange() const; | 217 BLINK_EXPORT float maxValueForRange() const; |
| 217 BLINK_EXPORT float minValueForRange() const; | 218 BLINK_EXPORT float minValueForRange() const; |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 operator AXObject*() const; | 306 operator AXObject*() const; |
| 306 #endif | 307 #endif |
| 307 | 308 |
| 308 private: | 309 private: |
| 309 WebPrivatePtr<AXObject> m_private; | 310 WebPrivatePtr<AXObject> m_private; |
| 310 }; | 311 }; |
| 311 | 312 |
| 312 } // namespace blink | 313 } // namespace blink |
| 313 | 314 |
| 314 #endif | 315 #endif |
| OLD | NEW |