Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(228)

Side by Side Diff: Source/core/rendering/RenderFrameSet.cpp

Issue 423093002: Oilpan: Prepare to move RenderObject and RenderObjectChildList to Oilpan heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: add more trace Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
54 RenderFrameSet::GridAxis::GridAxis() 60 RenderFrameSet::GridAxis::GridAxis()
55 : m_splitBeingResized(noSplit) 61 : m_splitBeingResized(noSplit)
56 { 62 {
57 } 63 }
58 64
59 inline HTMLFrameSetElement* RenderFrameSet::frameSet() const 65 inline HTMLFrameSetElement* RenderFrameSet::frameSet() const
60 { 66 {
61 return toHTMLFrameSetElement(node()); 67 return toHTMLFrameSetElement(node());
62 } 68 }
63 69
(...skipping 589 matching lines...) Expand 10 before | Expand all | Expand 10 after
653 return SetCursor; 659 return SetCursor;
654 } 660 }
655 if (canResizeColumn(roundedPoint)) { 661 if (canResizeColumn(roundedPoint)) {
656 cursor = columnResizeCursor(); 662 cursor = columnResizeCursor();
657 return SetCursor; 663 return SetCursor;
658 } 664 }
659 return RenderBox::getCursor(point, cursor); 665 return RenderBox::getCursor(point, cursor);
660 } 666 }
661 667
662 } // namespace blink 668 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698