Index: third_party/WebKit/public/web/WebAXObject.h |
diff --git a/third_party/WebKit/public/web/WebAXObject.h b/third_party/WebKit/public/web/WebAXObject.h |
index 3666068d25df520f694fee65533d0391de03786c..c7d65aa7b6f1d97659c26681e0e3a12bcd7587fa 100644 |
--- a/third_party/WebKit/public/web/WebAXObject.h |
+++ b/third_party/WebKit/public/web/WebAXObject.h |
@@ -263,6 +263,10 @@ class WebAXObject { |
BLINK_EXPORT void showContextMenu() const; |
// For a table |
+ BLINK_EXPORT int ariaColumnCount() const; |
dcheng
2016/12/16 08:53:42
Why are some ints and others unsigned?
dmazzoni
2016/12/20 18:16:32
The spec allows aria-colcount="-1" to indicate an
|
+ BLINK_EXPORT unsigned ariaColumnIndex() const; |
+ BLINK_EXPORT int ariaRowCount() const; |
+ BLINK_EXPORT unsigned ariaRowIndex() const; |
BLINK_EXPORT unsigned columnCount() const; |
BLINK_EXPORT unsigned rowCount() const; |
BLINK_EXPORT WebAXObject cellForColumnAndRow(unsigned column, |