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

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

Issue 264773018: [New Multicolumn] Remove the term "balancing" from some member names. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Code review. Created 6 years, 7 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 | « no previous file | Source/core/rendering/RenderMultiColumnFlowThread.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 * Copyright (C) 2012 Apple Inc. All rights reserved. 2 * Copyright (C) 2012 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 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 virtual void setPageBreak(LayoutUnit offset, LayoutUnit spaceShortage) OVERR IDE; 97 virtual void setPageBreak(LayoutUnit offset, LayoutUnit spaceShortage) OVERR IDE;
98 virtual void updateMinimumPageHeight(LayoutUnit offset, LayoutUnit minHeight ) OVERRIDE; 98 virtual void updateMinimumPageHeight(LayoutUnit offset, LayoutUnit minHeight ) OVERRIDE;
99 virtual RenderRegion* regionAtBlockOffset(LayoutUnit) const OVERRIDE; 99 virtual RenderRegion* regionAtBlockOffset(LayoutUnit) const OVERRIDE;
100 virtual bool addForcedRegionBreak(LayoutUnit, RenderObject* breakChild, bool isBefore, LayoutUnit* offsetBreakAdjustment = 0) OVERRIDE; 100 virtual bool addForcedRegionBreak(LayoutUnit, RenderObject* breakChild, bool isBefore, LayoutUnit* offsetBreakAdjustment = 0) OVERRIDE;
101 virtual bool isPageLogicalHeightKnown() const OVERRIDE; 101 virtual bool isPageLogicalHeightKnown() const OVERRIDE;
102 102
103 unsigned m_columnCount; // The used value of column-count 103 unsigned m_columnCount; // The used value of column-count
104 LayoutUnit m_columnWidth; // The used value of column-width 104 LayoutUnit m_columnWidth; // The used value of column-width
105 LayoutUnit m_columnHeightAvailable; // Total height available to columns, or 0 if auto. 105 LayoutUnit m_columnHeightAvailable; // Total height available to columns, or 0 if auto.
106 bool m_inBalancingPass; // Set when relayouting for column balancing. 106 bool m_inBalancingPass; // Set when relayouting for column balancing.
107 bool m_needsRebalancing; 107 bool m_needsColumnHeightsRecalculation; // Set when we need to recalculate t he column set heights after layout.
108 }; 108 };
109 109
110 } // namespace WebCore 110 } // namespace WebCore
111 111
112 #endif // RenderMultiColumnFlowThread_h 112 #endif // RenderMultiColumnFlowThread_h
113 113
OLDNEW
« no previous file with comments | « no previous file | Source/core/rendering/RenderMultiColumnFlowThread.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698