Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(152)

Side by Side Diff: third_party/WebKit/public/web/WebAXObject.h

Issue 2539503003: ARIA 1.1: implementation for aria-col-* and aria-row-*. (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 BLINK_EXPORT bool increment() const; 263 BLINK_EXPORT bool increment() const;
264 BLINK_EXPORT bool decrement() const; 264 BLINK_EXPORT bool decrement() const;
265 BLINK_EXPORT void setFocused(bool) const; 265 BLINK_EXPORT void setFocused(bool) const;
266 BLINK_EXPORT void setSelectedTextRange(int selectionStart, 266 BLINK_EXPORT void setSelectedTextRange(int selectionStart,
267 int selectionEnd) const; 267 int selectionEnd) const;
268 BLINK_EXPORT void setSequentialFocusNavigationStartingPoint() const; 268 BLINK_EXPORT void setSequentialFocusNavigationStartingPoint() const;
269 BLINK_EXPORT void setValue(WebString) const; 269 BLINK_EXPORT void setValue(WebString) const;
270 BLINK_EXPORT void showContextMenu() const; 270 BLINK_EXPORT void showContextMenu() const;
271 271
272 // For a table 272 // For a table
273 BLINK_EXPORT int ariaColumnCount() const;
274 BLINK_EXPORT unsigned ariaColumnIndex() const;
275 BLINK_EXPORT int ariaRowCount() const;
276 BLINK_EXPORT unsigned ariaRowIndex() const;
273 BLINK_EXPORT unsigned columnCount() const; 277 BLINK_EXPORT unsigned columnCount() const;
274 BLINK_EXPORT unsigned rowCount() const; 278 BLINK_EXPORT unsigned rowCount() const;
275 BLINK_EXPORT WebAXObject cellForColumnAndRow(unsigned column, 279 BLINK_EXPORT WebAXObject cellForColumnAndRow(unsigned column,
276 unsigned row) const; 280 unsigned row) const;
277 BLINK_EXPORT WebAXObject headerContainerObject() const; 281 BLINK_EXPORT WebAXObject headerContainerObject() const;
278 BLINK_EXPORT WebAXObject rowAtIndex(unsigned rowIndex) const; 282 BLINK_EXPORT WebAXObject rowAtIndex(unsigned rowIndex) const;
279 BLINK_EXPORT WebAXObject columnAtIndex(unsigned columnIndex) const; 283 BLINK_EXPORT WebAXObject columnAtIndex(unsigned columnIndex) const;
280 BLINK_EXPORT void rowHeaders(WebVector<WebAXObject>&) const; 284 BLINK_EXPORT void rowHeaders(WebVector<WebAXObject>&) const;
281 BLINK_EXPORT void columnHeaders(WebVector<WebAXObject>&) const; 285 BLINK_EXPORT void columnHeaders(WebVector<WebAXObject>&) const;
282 286
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
344 operator AXObject*() const; 348 operator AXObject*() const;
345 #endif 349 #endif
346 350
347 private: 351 private:
348 WebPrivatePtr<AXObject> m_private; 352 WebPrivatePtr<AXObject> m_private;
349 }; 353 };
350 354
351 } // namespace blink 355 } // namespace blink
352 356
353 #endif 357 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698