| 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 18 matching lines...) Expand all Loading... |
| 29 #ifndef AXTableColumn_h | 29 #ifndef AXTableColumn_h |
| 30 #define AXTableColumn_h | 30 #define AXTableColumn_h |
| 31 | 31 |
| 32 #include "core/accessibility/AXMockObject.h" | 32 #include "core/accessibility/AXMockObject.h" |
| 33 #include "core/accessibility/AXTable.h" | 33 #include "core/accessibility/AXTable.h" |
| 34 | 34 |
| 35 namespace blink { | 35 namespace blink { |
| 36 | 36 |
| 37 class RenderTableSection; | 37 class RenderTableSection; |
| 38 | 38 |
| 39 class AXTableColumn FINAL : public AXMockObject { | 39 class AXTableColumn final : public AXMockObject { |
| 40 | 40 |
| 41 private: | 41 private: |
| 42 AXTableColumn(); | 42 AXTableColumn(); |
| 43 public: | 43 public: |
| 44 static PassRefPtr<AXTableColumn> create(); | 44 static PassRefPtr<AXTableColumn> create(); |
| 45 virtual ~AXTableColumn(); | 45 virtual ~AXTableColumn(); |
| 46 | 46 |
| 47 AXObject* headerObject(); | 47 AXObject* headerObject(); |
| 48 | 48 |
| 49 virtual AccessibilityRole roleValue() const OVERRIDE { return ColumnRole; } | 49 virtual AccessibilityRole roleValue() const override { return ColumnRole; } |
| 50 | 50 |
| 51 void setColumnIndex(int columnIndex) { m_columnIndex = columnIndex; } | 51 void setColumnIndex(int columnIndex) { m_columnIndex = columnIndex; } |
| 52 int columnIndex() const { return m_columnIndex; } | 52 int columnIndex() const { return m_columnIndex; } |
| 53 | 53 |
| 54 virtual void addChildren() OVERRIDE; | 54 virtual void addChildren() override; |
| 55 virtual void setParent(AXObject*) OVERRIDE; | 55 virtual void setParent(AXObject*) override; |
| 56 | 56 |
| 57 virtual LayoutRect elementRect() const OVERRIDE; | 57 virtual LayoutRect elementRect() const override; |
| 58 | 58 |
| 59 private: | 59 private: |
| 60 unsigned m_columnIndex; | 60 unsigned m_columnIndex; |
| 61 LayoutRect m_columnRect; | 61 LayoutRect m_columnRect; |
| 62 | 62 |
| 63 virtual bool isTableCol() const OVERRIDE { return true; } | 63 virtual bool isTableCol() const override { return true; } |
| 64 AXObject* headerObjectForSection(RenderTableSection*, bool thTagRequired); | 64 AXObject* headerObjectForSection(RenderTableSection*, bool thTagRequired); |
| 65 virtual bool computeAccessibilityIsIgnored() const OVERRIDE; | 65 virtual bool computeAccessibilityIsIgnored() const override; |
| 66 }; | 66 }; |
| 67 | 67 |
| 68 DEFINE_AX_OBJECT_TYPE_CASTS(AXTableColumn, isTableCol()); | 68 DEFINE_AX_OBJECT_TYPE_CASTS(AXTableColumn, isTableCol()); |
| 69 | 69 |
| 70 } // namespace blink | 70 } // namespace blink |
| 71 | 71 |
| 72 #endif // AXTableColumn_h | 72 #endif // AXTableColumn_h |
| OLD | NEW |