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

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

Issue 2028893002: Disallow fragmentation of composited content. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 9cb4c7272eea1f8263445e534ec85e2a32873018..5b09b69628b2cbd4d22b5d518cbb2f27701dfe40 100644
--- a/third_party/WebKit/Source/platform/graphics/SquashingDisallowedReasons.h
+++ b/third_party/WebKit/Source/platform/graphics/SquashingDisallowedReasons.h
@@ -30,6 +30,7 @@ const uint64_t SquashingDisallowedReasonScrollChildWithCompositedDescendants
const uint64_t SquashingDisallowedReasonSquashingLayerIsAnimating = UINT64_C(1) << 14;
const uint64_t SquashingDisallowedReasonRenderingContextMismatch = UINT64_C(1) << 15;
const uint64_t SquashingDisallowedReasonNonTranslationTransform = UINT64_C(1) << 16;
+const uint64_t SquashingDisallowedReasonFragmentedContent = UINT64_C(1) << 17;
typedef uint64_t SquashingDisallowedReasons;

Powered by Google App Engine
This is Rietveld 408576698