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

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

Issue 1547643002: ARIA 1.1: implementation for aria-col-* and aria-row-*. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adds MODULES_EXPORT Created 4 years, 12 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
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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 BLINK_EXPORT bool performDefaultAction() const; 230 BLINK_EXPORT bool performDefaultAction() const;
231 BLINK_EXPORT bool press() const; 231 BLINK_EXPORT bool press() const;
232 BLINK_EXPORT bool increment() const; 232 BLINK_EXPORT bool increment() const;
233 BLINK_EXPORT bool decrement() const; 233 BLINK_EXPORT bool decrement() const;
234 BLINK_EXPORT void setFocused(bool) const; 234 BLINK_EXPORT void setFocused(bool) const;
235 BLINK_EXPORT void setSelectedTextRange(int selectionStart, int selectionEnd) const; 235 BLINK_EXPORT void setSelectedTextRange(int selectionStart, int selectionEnd) const;
236 BLINK_EXPORT void setValue(WebString) const; 236 BLINK_EXPORT void setValue(WebString) const;
237 BLINK_EXPORT void showContextMenu() const; 237 BLINK_EXPORT void showContextMenu() const;
238 238
239 // For a table 239 // For a table
240 BLINK_EXPORT int ariaColumnCount() const;
241 BLINK_EXPORT unsigned ariaColumnIndex() const;
242 BLINK_EXPORT int ariaRowCount() const;
243 BLINK_EXPORT unsigned ariaRowIndex() const;
240 BLINK_EXPORT unsigned columnCount() const; 244 BLINK_EXPORT unsigned columnCount() const;
241 BLINK_EXPORT unsigned rowCount() const; 245 BLINK_EXPORT unsigned rowCount() const;
242 BLINK_EXPORT WebAXObject cellForColumnAndRow(unsigned column, unsigned row) const; 246 BLINK_EXPORT WebAXObject cellForColumnAndRow(unsigned column, unsigned row) const;
243 BLINK_EXPORT WebAXObject headerContainerObject() const; 247 BLINK_EXPORT WebAXObject headerContainerObject() const;
244 BLINK_EXPORT WebAXObject rowAtIndex(unsigned rowIndex) const; 248 BLINK_EXPORT WebAXObject rowAtIndex(unsigned rowIndex) const;
245 BLINK_EXPORT WebAXObject columnAtIndex(unsigned columnIndex) const; 249 BLINK_EXPORT WebAXObject columnAtIndex(unsigned columnIndex) const;
246 BLINK_EXPORT void rowHeaders(WebVector<WebAXObject>&) const; 250 BLINK_EXPORT void rowHeaders(WebVector<WebAXObject>&) const;
247 BLINK_EXPORT void columnHeaders(WebVector<WebAXObject>&) const; 251 BLINK_EXPORT void columnHeaders(WebVector<WebAXObject>&) const;
248 252
249 // For a table row 253 // For a table row
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
294 operator AXObject*() const; 298 operator AXObject*() const;
295 #endif 299 #endif
296 300
297 private: 301 private:
298 WebPrivatePtr<AXObject> m_private; 302 WebPrivatePtr<AXObject> m_private;
299 }; 303 };
300 304
301 } // namespace blink 305 } // namespace blink
302 306
303 #endif 307 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698