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

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

Issue 869323003: Oilpan: move RenderObjects off heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: review-induced improvements Created 5 years, 10 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
« no previous file with comments | « Source/core/rendering/RenderFrameSet.h ('k') | Source/core/rendering/RenderFullScreen.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
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
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
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderFrameSet.h ('k') | Source/core/rendering/RenderFullScreen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698