OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1997 Martin Jones (mjones@kde.org) | 2 * Copyright (C) 1997 Martin Jones (mjones@kde.org) |
3 * (C) 1997 Torben Weis (weis@kde.org) | 3 * (C) 1997 Torben Weis (weis@kde.org) |
4 * (C) 1998 Waldo Bastian (bastian@kde.org) | 4 * (C) 1998 Waldo Bastian (bastian@kde.org) |
5 * (C) 1999 Lars Knoll (knoll@kde.org) | 5 * (C) 1999 Lars Knoll (knoll@kde.org) |
6 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 6 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
7 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. | 7 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. |
8 * All rights reserved. | 8 * All rights reserved. |
9 * | 9 * |
10 * This library is free software; you can redistribute it and/or | 10 * This library is free software; you can redistribute it and/or |
(...skipping 1465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1476 return true; | 1476 return true; |
1477 | 1477 |
1478 return LayoutBlock::HasLineIfEmpty(); | 1478 return LayoutBlock::HasLineIfEmpty(); |
1479 } | 1479 } |
1480 | 1480 |
1481 PaintInvalidationReason LayoutTableCell::InvalidatePaint( | 1481 PaintInvalidationReason LayoutTableCell::InvalidatePaint( |
1482 const PaintInvalidatorContext& context) const { | 1482 const PaintInvalidatorContext& context) const { |
1483 return TableCellPaintInvalidator(*this, context).InvalidatePaint(); | 1483 return TableCellPaintInvalidator(*this, context).InvalidatePaint(); |
1484 } | 1484 } |
1485 | 1485 |
1486 PaintInvalidationReason LayoutTableCell::InvalidatePaint( | |
1487 const PaintInvalidationState& state) { | |
1488 return LayoutBlockFlow::InvalidatePaint(state); | |
1489 } | |
1490 | |
1491 } // namespace blink | 1486 } // namespace blink |
OLD | NEW |