| 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, 2009, 2010 Apple Inc. All rights reserv
ed. | 7 * Copyright (C) 2003, 2004, 2005, 2006, 2009, 2010 Apple Inc. All rights reserv
ed. |
| 8 * | 8 * |
| 9 * This library is free software; you can redistribute it and/or | 9 * This library is free software; you can redistribute it and/or |
| 10 * modify it under the terms of the GNU Library General Public | 10 * modify it under the terms of the GNU Library General Public |
| (...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 244 virtual void removeChild(RenderObject* oldChild); | 244 virtual void removeChild(RenderObject* oldChild); |
| 245 | 245 |
| 246 virtual void paint(PaintInfo&, const LayoutPoint&); | 246 virtual void paint(PaintInfo&, const LayoutPoint&); |
| 247 virtual void paintObject(PaintInfo&, const LayoutPoint&); | 247 virtual void paintObject(PaintInfo&, const LayoutPoint&); |
| 248 virtual void paintBoxDecorations(PaintInfo&, const LayoutPoint&); | 248 virtual void paintBoxDecorations(PaintInfo&, const LayoutPoint&); |
| 249 virtual void paintMask(PaintInfo&, const LayoutPoint&); | 249 virtual void paintMask(PaintInfo&, const LayoutPoint&); |
| 250 virtual void layout(); | 250 virtual void layout(); |
| 251 virtual void computePreferredLogicalWidths(); | 251 virtual void computePreferredLogicalWidths(); |
| 252 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, const HitTes
tPoint& pointInContainer, const LayoutPoint& accumulatedOffset, HitTestAction) O
VERRIDE; | 252 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, const HitTes
tPoint& pointInContainer, const LayoutPoint& accumulatedOffset, HitTestAction) O
VERRIDE; |
| 253 | 253 |
| 254 virtual LayoutUnit firstLineBoxBaseline() const OVERRIDE; | 254 virtual LayoutUnit firstLineBoxBaseline() const; |
| 255 virtual LayoutUnit lastLineBoxBaseline() const OVERRIDE; | |
| 256 | 255 |
| 257 virtual RenderBlock* firstLineBlock() const; | 256 virtual RenderBlock* firstLineBlock() const; |
| 258 virtual void updateFirstLetter(); | 257 virtual void updateFirstLetter(); |
| 259 | 258 |
| 260 virtual void setCellLogicalWidths(); | 259 virtual void setCellLogicalWidths(); |
| 261 | 260 |
| 262 virtual void computeLogicalWidth(); | 261 virtual void computeLogicalWidth(); |
| 263 | 262 |
| 264 LayoutUnit convertStyleLogicalWidthToComputedWidth(const Length& styleLogica
lWidth, LayoutUnit availableWidth); | 263 LayoutUnit convertStyleLogicalWidthToComputedWidth(const Length& styleLogica
lWidth, LayoutUnit availableWidth); |
| 265 | 264 |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 319 ASSERT(!object || object->isTable()); | 318 ASSERT(!object || object->isTable()); |
| 320 return static_cast<const RenderTable*>(object); | 319 return static_cast<const RenderTable*>(object); |
| 321 } | 320 } |
| 322 | 321 |
| 323 // This will catch anyone doing an unnecessary cast. | 322 // This will catch anyone doing an unnecessary cast. |
| 324 void toRenderTable(const RenderTable*); | 323 void toRenderTable(const RenderTable*); |
| 325 | 324 |
| 326 } // namespace WebCore | 325 } // namespace WebCore |
| 327 | 326 |
| 328 #endif // RenderTable_h | 327 #endif // RenderTable_h |
| OLD | NEW |