| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2008 Apple 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 | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 | 35 |
| 36 class AXObjectCacheImpl; | 36 class AXObjectCacheImpl; |
| 37 | 37 |
| 38 class AXTableRow : public AXLayoutObject { | 38 class AXTableRow : public AXLayoutObject { |
| 39 | 39 |
| 40 protected: | 40 protected: |
| 41 AXTableRow(LayoutObject*, AXObjectCacheImpl&); | 41 AXTableRow(LayoutObject*, AXObjectCacheImpl&); |
| 42 | 42 |
| 43 public: | 43 public: |
| 44 static PassRefPtrWillBeRawPtr<AXTableRow> create(LayoutObject*, AXObjectCach
eImpl&); | 44 static PassRefPtrWillBeRawPtr<AXTableRow> create(LayoutObject*, AXObjectCach
eImpl&); |
| 45 virtual ~AXTableRow(); | 45 ~AXTableRow() override; |
| 46 | 46 |
| 47 virtual bool isTableRow() const override final; | 47 bool isTableRow() const final; |
| 48 | 48 |
| 49 // retrieves the "row" header (a th tag in the rightmost column) | 49 // retrieves the "row" header (a th tag in the rightmost column) |
| 50 virtual AXObject* headerObject(); | 50 virtual AXObject* headerObject(); |
| 51 // retrieves the "row" headers (th, scope) from left to right for the each r
ow. | 51 // retrieves the "row" headers (th, scope) from left to right for the each r
ow. |
| 52 virtual void headerObjectsForRow(AccessibilityChildrenVector&); | 52 virtual void headerObjectsForRow(AccessibilityChildrenVector&); |
| 53 AXObject* parentTable() const; | 53 AXObject* parentTable() const; |
| 54 | 54 |
| 55 void setRowIndex(int rowIndex) { m_rowIndex = rowIndex; } | 55 void setRowIndex(int rowIndex) { m_rowIndex = rowIndex; } |
| 56 int rowIndex() const { return m_rowIndex; } | 56 int rowIndex() const { return m_rowIndex; } |
| 57 | 57 |
| 58 // allows the table to add other children that may not originate | 58 // allows the table to add other children that may not originate |
| 59 // in the row, but their col/row spans overlap into it | 59 // in the row, but their col/row spans overlap into it |
| 60 void appendChild(AXObject*); | 60 void appendChild(AXObject*); |
| 61 | 61 |
| 62 protected: | 62 protected: |
| 63 virtual AccessibilityRole determineAccessibilityRole() override final; | 63 AccessibilityRole determineAccessibilityRole() final; |
| 64 | 64 |
| 65 private: | 65 private: |
| 66 int m_rowIndex; | 66 int m_rowIndex; |
| 67 | 67 |
| 68 virtual bool computeAccessibilityIsIgnored(IgnoredReasons* = nullptr) const
override final; | 68 bool computeAccessibilityIsIgnored(IgnoredReasons* = nullptr) const final; |
| 69 }; | 69 }; |
| 70 | 70 |
| 71 DEFINE_AX_OBJECT_TYPE_CASTS(AXTableRow, isTableRow()); | 71 DEFINE_AX_OBJECT_TYPE_CASTS(AXTableRow, isTableRow()); |
| 72 | 72 |
| 73 } // namespace blink | 73 } // namespace blink |
| 74 | 74 |
| 75 #endif // AXTableRow_h | 75 #endif // AXTableRow_h |
| OLD | NEW |