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

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: Fix bad rebase Created 3 years, 11 months 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
« no previous file with comments | « third_party/WebKit/Source/web/WebAXObject.cpp ('k') | ui/accessibility/ax_enums.idl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/WebAXObject.cpp ('k') | ui/accessibility/ax_enums.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698