| OLD | NEW |
| 1 /** | 1 /** |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 2000 Simon Hausmann <hausmann@kde.org> | 3 * (C) 2000 Simon Hausmann <hausmann@kde.org> |
| 4 * (C) 2000 Stefan Schimanski (1Stein@gmx.de) | 4 * (C) 2000 Stefan Schimanski (1Stein@gmx.de) |
| 5 * Copyright (C) 2004, 2005, 2006 Apple Computer, Inc. | 5 * Copyright (C) 2004, 2005, 2006 Apple Computer, Inc. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 , m_isResizing(false) | 44 , m_isResizing(false) |
| 45 , m_isChildResizing(false) | 45 , m_isChildResizing(false) |
| 46 { | 46 { |
| 47 setInline(false); | 47 setInline(false); |
| 48 } | 48 } |
| 49 | 49 |
| 50 RenderFrameSet::~RenderFrameSet() | 50 RenderFrameSet::~RenderFrameSet() |
| 51 { | 51 { |
| 52 } | 52 } |
| 53 | 53 |
| 54 void RenderFrameSet::trace(Visitor* visitor) | |
| 55 { | |
| 56 visitor->trace(m_children); | |
| 57 RenderBox::trace(visitor); | |
| 58 } | |
| 59 | |
| 60 RenderFrameSet::GridAxis::GridAxis() | 54 RenderFrameSet::GridAxis::GridAxis() |
| 61 : m_splitBeingResized(noSplit) | 55 : m_splitBeingResized(noSplit) |
| 62 { | 56 { |
| 63 } | 57 } |
| 64 | 58 |
| 65 inline HTMLFrameSetElement* RenderFrameSet::frameSet() const | 59 inline HTMLFrameSetElement* RenderFrameSet::frameSet() const |
| 66 { | 60 { |
| 67 return toHTMLFrameSetElement(node()); | 61 return toHTMLFrameSetElement(node()); |
| 68 } | 62 } |
| 69 | 63 |
| (...skipping 589 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 659 return SetCursor; | 653 return SetCursor; |
| 660 } | 654 } |
| 661 if (canResizeColumn(roundedPoint)) { | 655 if (canResizeColumn(roundedPoint)) { |
| 662 cursor = columnResizeCursor(); | 656 cursor = columnResizeCursor(); |
| 663 return SetCursor; | 657 return SetCursor; |
| 664 } | 658 } |
| 665 return RenderBox::getCursor(point, cursor); | 659 return RenderBox::getCursor(point, cursor); |
| 666 } | 660 } |
| 667 | 661 |
| 668 } // namespace blink | 662 } // namespace blink |
| OLD | NEW |