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

Unified Diff: third_party/WebKit/Source/platform/graphics/CompositingReasons.h

Issue 2194273002: Fix border radius on composited children. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Super hacky patch Created 4 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/graphics/CompositingReasons.h
diff --git a/third_party/WebKit/Source/platform/graphics/CompositingReasons.h b/third_party/WebKit/Source/platform/graphics/CompositingReasons.h
index 48e61eaae7df41195edf081bd6151968e7205b1f..4d731230afb28f639e1bdda93dd73eb2d245c1fc 100644
--- a/third_party/WebKit/Source/platform/graphics/CompositingReasons.h
+++ b/third_party/WebKit/Source/platform/graphics/CompositingReasons.h
@@ -72,12 +72,13 @@ const uint64_t CompositingReasonLayerForBackground = UINT6
const uint64_t CompositingReasonLayerForMask = UINT64_C(1) << 45;
const uint64_t CompositingReasonLayerForClippingMask = UINT64_C(1) << 46;
const uint64_t CompositingReasonLayerForScrollingBlockSelection = UINT64_C(1) << 47;
+const uint64_t CompositingReasonLayerForAncestorClippingMask = UINT64_C(1) << 48;
// Composited elements with inline transforms trigger assumed overlap so that
// we can update their transforms quickly.
-const uint64_t CompositingReasonInlineTransform = UINT64_C(1) << 48;
+const uint64_t CompositingReasonInlineTransform = UINT64_C(1) << 49;
-const uint64_t CompositingReasonCompositorProxy = UINT64_C(1) << 49;
+const uint64_t CompositingReasonCompositorProxy = UINT64_C(1) << 50;
// Various combinations of compositing reasons are defined here also, for more intutive and faster bitwise logic.
const uint64_t CompositingReasonComboAllDirectReasons =

Powered by Google App Engine
This is Rietveld 408576698