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

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

Issue 481333005: Remove column set range map from RenderFlowThread. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 3 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
« no previous file with comments | « Source/core/rendering/RenderBlockFlow.cpp ('k') | Source/core/rendering/RenderFlexibleBox.cpp » ('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 * This file is part of the render object implementation for KHTML. 2 * This file is part of the render object implementation for KHTML.
3 * 3 *
4 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 4 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
5 * (C) 1999 Antti Koivisto (koivisto@kde.org) 5 * (C) 1999 Antti Koivisto (koivisto@kde.org)
6 * Copyright (C) 2003 Apple Computer, Inc. 6 * Copyright (C) 2003 Apple Computer, Inc.
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
277 layoutVerticalBox(relayoutChildren); 277 layoutVerticalBox(relayoutChildren);
278 278
279 LayoutUnit oldClientAfterEdge = clientLogicalBottom(); 279 LayoutUnit oldClientAfterEdge = clientLogicalBottom();
280 updateLogicalHeight(); 280 updateLogicalHeight();
281 281
282 if (previousSize.height() != height()) 282 if (previousSize.height() != height())
283 relayoutChildren = true; 283 relayoutChildren = true;
284 284
285 layoutPositionedObjects(relayoutChildren || isDocumentElement()); 285 layoutPositionedObjects(relayoutChildren || isDocumentElement());
286 286
287 computeRegionRangeForBlock(flowThreadContainingBlock());
288
289 computeOverflow(oldClientAfterEdge); 287 computeOverflow(oldClientAfterEdge);
290 } 288 }
291 289
292 updateLayerTransformAfterLayout(); 290 updateLayerTransformAfterLayout();
293 291
294 if (view()->layoutState()->pageLogicalHeight()) 292 if (view()->layoutState()->pageLogicalHeight())
295 setPageLogicalOffset(view()->layoutState()->pageLogicalOffset(*this, log icalTop())); 293 setPageLogicalOffset(view()->layoutState()->pageLogicalOffset(*this, log icalTop()));
296 294
297 // Update our scrollbars if we're overflow:auto/scroll/hidden now that we kn ow if 295 // Update our scrollbars if we're overflow:auto/scroll/hidden now that we kn ow if
298 // we overflow or not. 296 // we overflow or not.
(...skipping 763 matching lines...) Expand 10 before | Expand all | Expand 10 after
1062 if (isPseudoElement()) 1060 if (isPseudoElement())
1063 return "RenderDeprecatedFlexibleBox (generated)"; 1061 return "RenderDeprecatedFlexibleBox (generated)";
1064 if (isAnonymous()) 1062 if (isAnonymous())
1065 return "RenderDeprecatedFlexibleBox (generated)"; 1063 return "RenderDeprecatedFlexibleBox (generated)";
1066 if (isRelPositioned()) 1064 if (isRelPositioned())
1067 return "RenderDeprecatedFlexibleBox (relative positioned)"; 1065 return "RenderDeprecatedFlexibleBox (relative positioned)";
1068 return "RenderDeprecatedFlexibleBox"; 1066 return "RenderDeprecatedFlexibleBox";
1069 } 1067 }
1070 1068
1071 } // namespace blink 1069 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderBlockFlow.cpp ('k') | Source/core/rendering/RenderFlexibleBox.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698