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

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

Issue 20231002: Replace RenderArena with PartitionAlloc (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase. Created 7 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) 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2009 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 ~RenderLineBoxList(); 46 ~RenderLineBoxList();
47 #endif 47 #endif
48 48
49 InlineFlowBox* firstLineBox() const { return m_firstLineBox; } 49 InlineFlowBox* firstLineBox() const { return m_firstLineBox; }
50 InlineFlowBox* lastLineBox() const { return m_lastLineBox; } 50 InlineFlowBox* lastLineBox() const { return m_lastLineBox; }
51 51
52 void checkConsistency() const; 52 void checkConsistency() const;
53 53
54 void appendLineBox(InlineFlowBox*); 54 void appendLineBox(InlineFlowBox*);
55 55
56 void deleteLineBoxTree(RenderArena*); 56 void deleteLineBoxTree();
57 void deleteLineBoxes(RenderArena*); 57 void deleteLineBoxes();
58 58
59 void extractLineBox(InlineFlowBox*); 59 void extractLineBox(InlineFlowBox*);
60 void attachLineBox(InlineFlowBox*); 60 void attachLineBox(InlineFlowBox*);
61 void removeLineBox(InlineFlowBox*); 61 void removeLineBox(InlineFlowBox*);
62 62
63 void dirtyLineBoxes(); 63 void dirtyLineBoxes();
64 void dirtyLinesFromChangedChild(RenderObject* parent, RenderObject* child); 64 void dirtyLinesFromChangedChild(RenderObject* parent, RenderObject* child);
65 65
66 void paint(RenderBoxModelObject*, PaintInfo&, const LayoutPoint&) const; 66 void paint(RenderBoxModelObject*, PaintInfo&, const LayoutPoint&) const;
67 bool hitTest(RenderBoxModelObject*, const HitTestRequest&, HitTestResult&, c onst HitTestLocation& locationInContainer, const LayoutPoint& accumulatedOffset, HitTestAction) const; 67 bool hitTest(RenderBoxModelObject*, const HitTestRequest&, HitTestResult&, c onst HitTestLocation& locationInContainer, const LayoutPoint& accumulatedOffset, HitTestAction) const;
(...skipping 13 matching lines...) Expand all
81 81
82 #ifdef NDEBUG 82 #ifdef NDEBUG
83 inline void RenderLineBoxList::checkConsistency() const 83 inline void RenderLineBoxList::checkConsistency() const
84 { 84 {
85 } 85 }
86 #endif 86 #endif
87 87
88 } // namespace WebCore 88 } // namespace WebCore
89 89
90 #endif // RenderFlow_h 90 #endif // RenderFlow_h
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderLayerModelObject.cpp ('k') | Source/core/rendering/RenderLineBoxList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698