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 20 matching lines...) Expand all Loading... |
31 | 31 |
32 #include "modules/accessibility/AXRenderObject.h" | 32 #include "modules/accessibility/AXRenderObject.h" |
33 | 33 |
34 namespace blink { | 34 namespace blink { |
35 | 35 |
36 class AXObjectCacheImpl; | 36 class AXObjectCacheImpl; |
37 | 37 |
38 class AXTableRow : public AXRenderObject { | 38 class AXTableRow : public AXRenderObject { |
39 | 39 |
40 protected: | 40 protected: |
41 AXTableRow(RenderObject*, AXObjectCacheImpl*); | 41 AXTableRow(LayoutObject*, AXObjectCacheImpl*); |
42 | 42 |
43 public: | 43 public: |
44 static PassRefPtr<AXTableRow> create(RenderObject*, AXObjectCacheImpl*); | 44 static PassRefPtr<AXTableRow> create(LayoutObject*, AXObjectCacheImpl*); |
45 virtual ~AXTableRow(); | 45 virtual ~AXTableRow(); |
46 | 46 |
47 virtual bool isTableRow() const override final; | 47 virtual bool isTableRow() const override 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 |
(...skipping 12 matching lines...) Expand all Loading... |
67 | 67 |
68 virtual AXObject* observableObject() const override final; | 68 virtual AXObject* observableObject() const override final; |
69 virtual bool computeAccessibilityIsIgnored() const override final; | 69 virtual bool computeAccessibilityIsIgnored() const override final; |
70 }; | 70 }; |
71 | 71 |
72 DEFINE_AX_OBJECT_TYPE_CASTS(AXTableRow, isTableRow()); | 72 DEFINE_AX_OBJECT_TYPE_CASTS(AXTableRow, isTableRow()); |
73 | 73 |
74 } // namespace blink | 74 } // namespace blink |
75 | 75 |
76 #endif // AXTableRow_h | 76 #endif // AXTableRow_h |
OLD | NEW |