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

Side by Side Diff: Source/core/rendering/InlineFlowBox.h

Issue 16896019: Replace RenderArena with PartitionAlloc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 6 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) 2003, 2004, 2005, 2006, 2007 Apple Inc. All rights reserved. 2 * Copyright (C) 2003, 2004, 2005, 2006, 2007 Apple Inc. All rights reserved.
3 * 3 *
4 * This library is free software; you can redistribute it and/or 4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public 5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either 6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version. 7 * version 2 of the License, or (at your option) any later version.
8 * 8 *
9 * This library is distributed in the hope that it will be useful, 9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 void collectLeafBoxesInLogicalOrder(Vector<InlineBox*>&, CustomInlineBoxRang eReverse customReverseImplementation = 0, void* userData = 0) const; 89 void collectLeafBoxesInLogicalOrder(Vector<InlineBox*>&, CustomInlineBoxRang eReverse customReverseImplementation = 0, void* userData = 0) const;
90 90
91 virtual void setConstructed() OVERRIDE FINAL 91 virtual void setConstructed() OVERRIDE FINAL
92 { 92 {
93 InlineBox::setConstructed(); 93 InlineBox::setConstructed();
94 for (InlineBox* child = firstChild(); child; child = child->nextOnLine() ) 94 for (InlineBox* child = firstChild(); child; child = child->nextOnLine() )
95 child->setConstructed(); 95 child->setConstructed();
96 } 96 }
97 97
98 void addToLine(InlineBox* child); 98 void addToLine(InlineBox* child);
99 virtual void deleteLine(RenderArena*) OVERRIDE FINAL; 99 virtual void deleteLine() OVERRIDE FINAL;
100 virtual void extractLine() OVERRIDE FINAL; 100 virtual void extractLine() OVERRIDE FINAL;
101 virtual void attachLine() OVERRIDE FINAL; 101 virtual void attachLine() OVERRIDE FINAL;
102 virtual void adjustPosition(float dx, float dy); 102 virtual void adjustPosition(float dx, float dy);
103 103
104 virtual void extractLineBoxFromRenderObject(); 104 virtual void extractLineBoxFromRenderObject();
105 virtual void attachLineBoxToRenderObject(); 105 virtual void attachLineBoxToRenderObject();
106 virtual void removeLineBoxFromRenderObject(); 106 virtual void removeLineBoxFromRenderObject();
107 107
108 virtual void clearTruncation() OVERRIDE; 108 virtual void clearTruncation() OVERRIDE;
109 109
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after
382 } 382 }
383 383
384 } // namespace WebCore 384 } // namespace WebCore
385 385
386 #ifndef NDEBUG 386 #ifndef NDEBUG
387 // Outside the WebCore namespace for ease of invocation from gdb. 387 // Outside the WebCore namespace for ease of invocation from gdb.
388 void showTree(const WebCore::InlineFlowBox*); 388 void showTree(const WebCore::InlineFlowBox*);
389 #endif 389 #endif
390 390
391 #endif // InlineFlowBox_h 391 #endif // InlineFlowBox_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698