Chromium Code Reviews| Index: Source/modules/accessibility/AXObject.h |
| diff --git a/Source/modules/accessibility/AXObject.h b/Source/modules/accessibility/AXObject.h |
| index 9f5ad675b2c273a5bf1178d2f5ae3dff41bf7667..63fda08f191f07b3f77f9741157636944ae7324a 100644 |
| --- a/Source/modules/accessibility/AXObject.h |
| +++ b/Source/modules/accessibility/AXObject.h |
| @@ -557,6 +557,10 @@ public: |
| virtual bool supportsARIAOwns() const { return false; } |
| bool supportsRangeValue() const; |
| virtual SortDirection sortDirection() const { return SortDirectionUndefined; } |
| + int indexInParent() const; |
|
dmazzoni
2015/04/16 17:19:48
Add a comment saying this is 0-based.
|
| + virtual int posInSet() const { return 0; } |
|
dmazzoni
2015/04/16 17:19:48
Add a comment saying that this is the 1-based posi
|
| + virtual int setSize() const { return 0; } |
| + bool supportsSetSizeAndPosInSet() const; |
| // ARIA trees. |
| // Used by an ARIA tree to get all its rows. |