| 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 28 matching lines...) Expand all Loading... |
| 39 | 39 |
| 40 AXTableCell::AXTableCell(LayoutObject* layoutObject, AXObjectCacheImpl& axObject
Cache) | 40 AXTableCell::AXTableCell(LayoutObject* layoutObject, AXObjectCacheImpl& axObject
Cache) |
| 41 : AXLayoutObject(layoutObject, axObjectCache) | 41 : AXLayoutObject(layoutObject, axObjectCache) |
| 42 { | 42 { |
| 43 } | 43 } |
| 44 | 44 |
| 45 AXTableCell::~AXTableCell() | 45 AXTableCell::~AXTableCell() |
| 46 { | 46 { |
| 47 } | 47 } |
| 48 | 48 |
| 49 PassRefPtr<AXTableCell> AXTableCell::create(LayoutObject* layoutObject, AXObject
CacheImpl& axObjectCache) | 49 PassRefPtrWillBeRawPtr<AXTableCell> AXTableCell::create(LayoutObject* layoutObje
ct, AXObjectCacheImpl& axObjectCache) |
| 50 { | 50 { |
| 51 return adoptRef(new AXTableCell(layoutObject, axObjectCache)); | 51 return adoptRefWillBeNoop(new AXTableCell(layoutObject, axObjectCache)); |
| 52 } | 52 } |
| 53 | 53 |
| 54 bool AXTableCell::isTableHeaderCell() const | 54 bool AXTableCell::isTableHeaderCell() const |
| 55 { | 55 { |
| 56 return node() && node()->hasTagName(thTag); | 56 return node() && node()->hasTagName(thTag); |
| 57 } | 57 } |
| 58 | 58 |
| 59 bool AXTableCell::isRowHeaderCell() const | 59 bool AXTableCell::isRowHeaderCell() const |
| 60 { | 60 { |
| 61 const AtomicString& scope = getAttribute(scopeAttr); | 61 const AtomicString& scope = getAttribute(scopeAttr); |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 return 0; | 249 return 0; |
| 250 | 250 |
| 251 Node* cellElement = headerCell->node(); | 251 Node* cellElement = headerCell->node(); |
| 252 if (!cellElement || !cellElement->hasTagName(thTag)) | 252 if (!cellElement || !cellElement->hasTagName(thTag)) |
| 253 return 0; | 253 return 0; |
| 254 | 254 |
| 255 return axObjectCache().getOrCreate(headerCell); | 255 return axObjectCache().getOrCreate(headerCell); |
| 256 } | 256 } |
| 257 | 257 |
| 258 } // namespace blink | 258 } // namespace blink |
| OLD | NEW |