| 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 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 // 1-based position in set & Size of set. | 202 // 1-based position in set & Size of set. |
| 203 BLINK_EXPORT int posInSet() const; | 203 BLINK_EXPORT int posInSet() const; |
| 204 BLINK_EXPORT int setSize() const; | 204 BLINK_EXPORT int setSize() const; |
| 205 | 205 |
| 206 // Live regions. | 206 // Live regions. |
| 207 BLINK_EXPORT bool isInLiveRegion() const; | 207 BLINK_EXPORT bool isInLiveRegion() const; |
| 208 BLINK_EXPORT bool liveRegionAtomic() const; | 208 BLINK_EXPORT bool liveRegionAtomic() const; |
| 209 BLINK_EXPORT bool liveRegionBusy() const; | 209 BLINK_EXPORT bool liveRegionBusy() const; |
| 210 BLINK_EXPORT WebString liveRegionRelevant() const; | 210 BLINK_EXPORT WebString liveRegionRelevant() const; |
| 211 BLINK_EXPORT WebString liveRegionStatus() const; | 211 BLINK_EXPORT WebString liveRegionStatus() const; |
| 212 BLINK_EXPORT WebAXObject liveRegionRoot() const; |
| 212 BLINK_EXPORT bool containerLiveRegionAtomic() const; | 213 BLINK_EXPORT bool containerLiveRegionAtomic() const; |
| 213 BLINK_EXPORT bool containerLiveRegionBusy() const; | 214 BLINK_EXPORT bool containerLiveRegionBusy() const; |
| 214 BLINK_EXPORT WebString containerLiveRegionRelevant() const; | 215 BLINK_EXPORT WebString containerLiveRegionRelevant() const; |
| 215 BLINK_EXPORT WebString containerLiveRegionStatus() const; | 216 BLINK_EXPORT WebString containerLiveRegionStatus() const; |
| 216 | 217 |
| 217 BLINK_EXPORT bool supportsRangeValue() const; | 218 BLINK_EXPORT bool supportsRangeValue() const; |
| 218 BLINK_EXPORT WebString valueDescription() const; | 219 BLINK_EXPORT WebString valueDescription() const; |
| 219 BLINK_EXPORT float valueForRange() const; | 220 BLINK_EXPORT float valueForRange() const; |
| 220 BLINK_EXPORT float maxValueForRange() const; | 221 BLINK_EXPORT float maxValueForRange() const; |
| 221 BLINK_EXPORT float minValueForRange() const; | 222 BLINK_EXPORT float minValueForRange() const; |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 323 operator AXObject*() const; | 324 operator AXObject*() const; |
| 324 #endif | 325 #endif |
| 325 | 326 |
| 326 private: | 327 private: |
| 327 WebPrivatePtr<AXObject> m_private; | 328 WebPrivatePtr<AXObject> m_private; |
| 328 }; | 329 }; |
| 329 | 330 |
| 330 } // namespace blink | 331 } // namespace blink |
| 331 | 332 |
| 332 #endif | 333 #endif |
| OLD | NEW |