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

Unified Diff: Source/core/paint/DeprecatedPaintLayer.h

Issue 1158183006: Remove the old multicol implementation. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase master Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/paint/BlockPainter.cpp ('k') | Source/core/paint/DeprecatedPaintLayer.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/paint/DeprecatedPaintLayer.h
diff --git a/Source/core/paint/DeprecatedPaintLayer.h b/Source/core/paint/DeprecatedPaintLayer.h
index 960ff62ac2d6533ed9404b150a7d1e737df3a6ad..7d07ed4342b4ca3dd0a63a39d1223816f141a207 100644
--- a/Source/core/paint/DeprecatedPaintLayer.h
+++ b/Source/core/paint/DeprecatedPaintLayer.h
@@ -157,7 +157,6 @@ public:
void updateLayerPositionsAfterLayout();
void updateLayerPositionsAfterOverflowScroll(const DoubleSize& scrollDelta);
- bool isPaginated() const { return m_isPaginated; }
DeprecatedPaintLayer* enclosingPaginationLayer() const { return m_enclosingPaginationLayer; }
void updateTransformationMatrix();
@@ -217,7 +216,7 @@ public:
bool canUseConvertToLayerCoords() const
{
// These LayoutObjects have an impact on their layers without the layoutObjects knowing about it.
- return !layoutObject()->hasColumns() && !layoutObject()->hasTransformRelatedProperty() && !layoutObject()->isSVGRoot();
+ return !layoutObject()->hasTransformRelatedProperty() && !layoutObject()->isSVGRoot();
}
void convertToLayerCoords(const DeprecatedPaintLayer* ancestorLayer, LayoutPoint&) const;
@@ -562,13 +561,6 @@ private:
const LayoutRect& hitTestRect, const HitTestLocation&,
const HitTestingTransformState*, double* zOffsetForDescendants, double* zOffset,
const HitTestingTransformState* unflattenedTransformState, bool depthSortDescendants);
- DeprecatedPaintLayer* hitTestPaginatedChildLayer(DeprecatedPaintLayer* childLayer, DeprecatedPaintLayer* rootLayer, HitTestResult&,
- const LayoutRect& hitTestRect, const HitTestLocation&,
- const HitTestingTransformState*, double* zOffset);
- DeprecatedPaintLayer* hitTestChildLayerColumns(DeprecatedPaintLayer* childLayer, DeprecatedPaintLayer* rootLayer, HitTestResult&,
- const LayoutRect& hitTestRect, const HitTestLocation&,
- const HitTestingTransformState*, double* zOffset,
- const Vector<DeprecatedPaintLayer*>& columnLayers, size_t columnIndex);
PassRefPtr<HitTestingTransformState> createLocalTransformState(DeprecatedPaintLayer* rootLayer, DeprecatedPaintLayer* containerLayer,
const LayoutRect& hitTestRect, const HitTestLocation&,
@@ -631,8 +623,6 @@ private:
unsigned m_hasVisibleNonLayerContent : 1;
- unsigned m_isPaginated : 1; // If we think this layer is split by a multi-column ancestor, then this bit will be set.
-
#if ENABLE(ASSERT)
unsigned m_needsPositionUpdate : 1;
#endif
« no previous file with comments | « Source/core/paint/BlockPainter.cpp ('k') | Source/core/paint/DeprecatedPaintLayer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698