| Index: third_party/WebKit/Source/core/paint/PaintLayerClipper.h
|
| diff --git a/third_party/WebKit/Source/core/paint/PaintLayerClipper.h b/third_party/WebKit/Source/core/paint/PaintLayerClipper.h
|
| index 71735cc2052493e06f807bba2cd3ed0d75871af9..3a94f66c2217fc5ce3a36a35fca6b6558a1450e0 100644
|
| --- a/third_party/WebKit/Source/core/paint/PaintLayerClipper.h
|
| +++ b/third_party/WebKit/Source/core/paint/PaintLayerClipper.h
|
| @@ -61,9 +61,9 @@ enum ShouldRespectOverflowClipType {
|
| class ClipRectsContext {
|
| STACK_ALLOCATED();
|
| public:
|
| - ClipRectsContext(const PaintLayer* root, ClipRectsCacheSlot slot, OverlayScrollbarSizeRelevancy relevancy = IgnoreOverlayScrollbarSize, const LayoutSize& accumulation = LayoutSize())
|
| + ClipRectsContext(const PaintLayer* root, ClipRectsCacheSlot slot, OverlayScrollbarClipBehavior overlayScrollbarClipBehavior = IgnoreOverlayScrollbarSize, const LayoutSize& accumulation = LayoutSize())
|
| : rootLayer(root)
|
| - , scrollbarRelevancy(relevancy)
|
| + , overlayScrollbarClipBehavior(overlayScrollbarClipBehavior)
|
| , m_cacheSlot(slot)
|
| , subPixelAccumulation(accumulation)
|
| , respectOverflowClip(slot == PaintingClipRectsIgnoringOverflowClip ? IgnoreOverflowClip : RespectOverflowClip)
|
| @@ -91,7 +91,7 @@ public:
|
| }
|
|
|
| const PaintLayer* rootLayer;
|
| - const OverlayScrollbarSizeRelevancy scrollbarRelevancy;
|
| + const OverlayScrollbarClipBehavior overlayScrollbarClipBehavior;
|
|
|
| private:
|
| friend class PaintLayerClipper;
|
|
|