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

Unified Diff: third_party/WebKit/Source/core/paint/PaintLayer.h

Issue 2194273002: Fix border radius on composited children. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Improve clip recording code Created 4 years, 1 month 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
Index: third_party/WebKit/Source/core/paint/PaintLayer.h
diff --git a/third_party/WebKit/Source/core/paint/PaintLayer.h b/third_party/WebKit/Source/core/paint/PaintLayer.h
index edda077fb96ec4880e7e43775f5cbeca25063792..438773f23413646831aa78e11b6d0d87dce7263f 100644
--- a/third_party/WebKit/Source/core/paint/PaintLayer.h
+++ b/third_party/WebKit/Source/core/paint/PaintLayer.h
@@ -835,6 +835,7 @@ class CORE_EXPORT PaintLayer : public DisplayItemClient {
LayoutRect paintingExtent(const PaintLayer* rootLayer,
const LayoutSize& subPixelAccumulation,
GlobalPaintFlags);
+
void appendSingleFragmentIgnoringPagination(
PaintLayerFragments&,
const PaintLayer* rootLayer,
@@ -842,6 +843,7 @@ class CORE_EXPORT PaintLayer : public DisplayItemClient {
ClipRectsCacheSlot,
OverlayScrollbarClipBehavior = IgnoreOverlayScrollbarSize,
ShouldRespectOverflowClipType = RespectOverflowClip,
+ bool paintingAncestorClippingMask = false,
Stephen Chennney 2016/11/08 21:42:52 I'm trying to get rid of this extra arg. It's hack
const LayoutPoint* offsetFromRoot = 0,
const LayoutSize& subPixelAccumulation = LayoutSize());
void collectFragments(
@@ -851,6 +853,7 @@ class CORE_EXPORT PaintLayer : public DisplayItemClient {
ClipRectsCacheSlot,
OverlayScrollbarClipBehavior = IgnoreOverlayScrollbarSize,
ShouldRespectOverflowClipType = RespectOverflowClip,
+ bool paintingAncestorClippingMask = false,
const LayoutPoint* offsetFromRoot = 0,
const LayoutSize& subPixelAccumulation = LayoutSize(),
const LayoutRect* layerBoundingBox = 0);

Powered by Google App Engine
This is Rietveld 408576698