| 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 HTMLFrameSetElement* RenderFrameSet::frameSet() const | 59 HTMLFrameSetElement* RenderFrameSet::frameSet() const |
| 66 { | 60 { |
| 67 return toHTMLFrameSetElement(node()); | 61 return toHTMLFrameSetElement(node()); |
| 68 } | 62 } |
| 69 | 63 |
| (...skipping 502 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 572 return SetCursor; | 566 return SetCursor; |
| 573 } | 567 } |
| 574 if (canResizeColumn(roundedPoint)) { | 568 if (canResizeColumn(roundedPoint)) { |
| 575 cursor = columnResizeCursor(); | 569 cursor = columnResizeCursor(); |
| 576 return SetCursor; | 570 return SetCursor; |
| 577 } | 571 } |
| 578 return RenderBox::getCursor(point, cursor); | 572 return RenderBox::getCursor(point, cursor); |
| 579 } | 573 } |
| 580 | 574 |
| 581 } // namespace blink | 575 } // namespace blink |
| OLD | NEW |