| 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 29 matching lines...) Expand all Loading... |
| 40 | 40 |
| 41 AXTableColumn::AXTableColumn(AXObjectCacheImpl& axObjectCache) | 41 AXTableColumn::AXTableColumn(AXObjectCacheImpl& axObjectCache) |
| 42 : AXMockObject(axObjectCache) | 42 : AXMockObject(axObjectCache) |
| 43 { | 43 { |
| 44 } | 44 } |
| 45 | 45 |
| 46 AXTableColumn::~AXTableColumn() | 46 AXTableColumn::~AXTableColumn() |
| 47 { | 47 { |
| 48 } | 48 } |
| 49 | 49 |
| 50 PassRefPtr<AXTableColumn> AXTableColumn::create(AXObjectCacheImpl& axObjectCache
) | 50 PassRefPtrWillBeRawPtr<AXTableColumn> AXTableColumn::create(AXObjectCacheImpl& a
xObjectCache) |
| 51 { | 51 { |
| 52 return adoptRef(new AXTableColumn(axObjectCache)); | 52 return adoptRefWillBeNoop(new AXTableColumn(axObjectCache)); |
| 53 } | 53 } |
| 54 | 54 |
| 55 | 55 |
| 56 void AXTableColumn::setParent(AXObject* parent) | 56 void AXTableColumn::setParent(AXObject* parent) |
| 57 { | 57 { |
| 58 AXMockObject::setParent(parent); | 58 AXMockObject::setParent(parent); |
| 59 | 59 |
| 60 clearChildren(); | 60 clearChildren(); |
| 61 } | 61 } |
| 62 | 62 |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 // make sure the last one isn't the same as this one (rowspan cells) | 154 // make sure the last one isn't the same as this one (rowspan cells) |
| 155 if (m_children.size() > 0 && m_children.last() == cell) | 155 if (m_children.size() > 0 && m_children.last() == cell) |
| 156 continue; | 156 continue; |
| 157 | 157 |
| 158 m_children.append(cell); | 158 m_children.append(cell); |
| 159 m_columnRect.unite(cell->elementRect()); | 159 m_columnRect.unite(cell->elementRect()); |
| 160 } | 160 } |
| 161 } | 161 } |
| 162 | 162 |
| 163 } // namespace blink | 163 } // namespace blink |
| OLD | NEW |