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

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

Issue 1835833005: Don't squash layers with non-translation transforms. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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/SquashingDisallowedReasons.h
diff --git a/third_party/WebKit/Source/platform/graphics/SquashingDisallowedReasons.h b/third_party/WebKit/Source/platform/graphics/SquashingDisallowedReasons.h
index 0833d68644cd8e0aee9e55d7a9fbc4f77ab80ce2..9cb4c7272eea1f8263445e534ec85e2a32873018 100644
--- a/third_party/WebKit/Source/platform/graphics/SquashingDisallowedReasons.h
+++ b/third_party/WebKit/Source/platform/graphics/SquashingDisallowedReasons.h
@@ -29,6 +29,7 @@ const uint64_t SquashingDisallowedReasonNearestFixedPositionMismatch
const uint64_t SquashingDisallowedReasonScrollChildWithCompositedDescendants = UINT64_C(1) << 13;
const uint64_t SquashingDisallowedReasonSquashingLayerIsAnimating = UINT64_C(1) << 14;
const uint64_t SquashingDisallowedReasonRenderingContextMismatch = UINT64_C(1) << 15;
+const uint64_t SquashingDisallowedReasonNonTranslationTransform = UINT64_C(1) << 16;
typedef uint64_t SquashingDisallowedReasons;

Powered by Google App Engine
This is Rietveld 408576698