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

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

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.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/SquashingDisallowedReasons.cpp b/third_party/WebKit/Source/platform/graphics/SquashingDisallowedReasons.cpp
index de6fd4eedaebba25d99d27c91fd8928d7c5569f0..ccbb18e03bc994d48937bbe9c9c978cb376d58c2 100644
--- a/third_party/WebKit/Source/platform/graphics/SquashingDisallowedReasons.cpp
+++ b/third_party/WebKit/Source/platform/graphics/SquashingDisallowedReasons.cpp
@@ -60,6 +60,9 @@ const SquashingDisallowedReasonStringMap kSquashingDisallowedReasonStringMap[] =
{ SquashingDisallowedReasonNonTranslationTransform,
"SquashingDisallowedReasonNonTranslationTransform",
"Cannot squash layers with transforms that are not identity or translation." },
+ { SquashingDisallowedReasonFragmentedContent,
+ "SquashingDisallowedReasonFragmentedContent",
+ "Cannot squash layers that are inside fragmentation contexts." },
};
const size_t kNumberOfSquashingDisallowedReasons = WTF_ARRAY_LENGTH(kSquashingDisallowedReasonStringMap);

Powered by Google App Engine
This is Rietveld 408576698