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

Unified Diff: public/web/WebAXObject.h

Issue 797223002: Provides an API to cope with table headers in Accessibility (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Separated tableHeaders into rowHeaders and columnHeaders. Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/web/WebAXObject.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebAXObject.h
diff --git a/public/web/WebAXObject.h b/public/web/WebAXObject.h
index 7ff832de3149e711adbfb27f90fbf74a2c56743a..c499eb81c2c77d3f075d9c7a96486212c7690c7e 100644
--- a/public/web/WebAXObject.h
+++ b/public/web/WebAXObject.h
@@ -197,10 +197,12 @@ public:
// For a table row
BLINK_EXPORT unsigned rowIndex() const;
BLINK_EXPORT WebAXObject rowHeader() const;
+ BLINK_EXPORT void rowHeaders(WebVector<WebAXObject>&) const;
dmazzoni 2014/12/19 19:02:36 The comment above this group of functions implies
// For a table column
BLINK_EXPORT unsigned columnIndex() const;
BLINK_EXPORT WebAXObject columnHeader() const;
+ BLINK_EXPORT void columnHeaders(WebVector<WebAXObject>&) const;
// For a table cell
BLINK_EXPORT unsigned cellColumnIndex() const;
« no previous file with comments | « Source/web/WebAXObject.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698