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 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
255 BLINK_EXPORT bool increment() const; | 255 BLINK_EXPORT bool increment() const; |
256 BLINK_EXPORT bool decrement() const; | 256 BLINK_EXPORT bool decrement() const; |
257 BLINK_EXPORT void setFocused(bool) const; | 257 BLINK_EXPORT void setFocused(bool) const; |
258 BLINK_EXPORT void setSelectedTextRange(int selectionStart, | 258 BLINK_EXPORT void setSelectedTextRange(int selectionStart, |
259 int selectionEnd) const; | 259 int selectionEnd) const; |
260 BLINK_EXPORT void setSequentialFocusNavigationStartingPoint() const; | 260 BLINK_EXPORT void setSequentialFocusNavigationStartingPoint() const; |
261 BLINK_EXPORT void setValue(WebString) const; | 261 BLINK_EXPORT void setValue(WebString) const; |
262 BLINK_EXPORT void showContextMenu() const; | 262 BLINK_EXPORT void showContextMenu() const; |
263 | 263 |
264 // For a table | 264 // For a table |
| 265 BLINK_EXPORT int ariaColumnCount() const; |
| 266 BLINK_EXPORT unsigned ariaColumnIndex() const; |
| 267 BLINK_EXPORT int ariaRowCount() const; |
| 268 BLINK_EXPORT unsigned ariaRowIndex() const; |
265 BLINK_EXPORT unsigned columnCount() const; | 269 BLINK_EXPORT unsigned columnCount() const; |
266 BLINK_EXPORT unsigned rowCount() const; | 270 BLINK_EXPORT unsigned rowCount() const; |
267 BLINK_EXPORT WebAXObject cellForColumnAndRow(unsigned column, | 271 BLINK_EXPORT WebAXObject cellForColumnAndRow(unsigned column, |
268 unsigned row) const; | 272 unsigned row) const; |
269 BLINK_EXPORT WebAXObject headerContainerObject() const; | 273 BLINK_EXPORT WebAXObject headerContainerObject() const; |
270 BLINK_EXPORT WebAXObject rowAtIndex(unsigned rowIndex) const; | 274 BLINK_EXPORT WebAXObject rowAtIndex(unsigned rowIndex) const; |
271 BLINK_EXPORT WebAXObject columnAtIndex(unsigned columnIndex) const; | 275 BLINK_EXPORT WebAXObject columnAtIndex(unsigned columnIndex) const; |
272 BLINK_EXPORT void rowHeaders(WebVector<WebAXObject>&) const; | 276 BLINK_EXPORT void rowHeaders(WebVector<WebAXObject>&) const; |
273 BLINK_EXPORT void columnHeaders(WebVector<WebAXObject>&) const; | 277 BLINK_EXPORT void columnHeaders(WebVector<WebAXObject>&) const; |
274 | 278 |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
336 operator AXObject*() const; | 340 operator AXObject*() const; |
337 #endif | 341 #endif |
338 | 342 |
339 private: | 343 private: |
340 WebPrivatePtr<AXObject> m_private; | 344 WebPrivatePtr<AXObject> m_private; |
341 }; | 345 }; |
342 | 346 |
343 } // namespace blink | 347 } // namespace blink |
344 | 348 |
345 #endif | 349 #endif |
OLD | NEW |