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

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

Issue 2332353003: Fix clip and offset issues of slimmingPaintInvalidation for SPv1 (Closed)
Patch Set: Filter 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/core/paint/PaintInvalidator.h
diff --git a/third_party/WebKit/Source/core/paint/PaintInvalidator.h b/third_party/WebKit/Source/core/paint/PaintInvalidator.h
index 564e136210f613a42cfe1da4421816b4b45c5457..efb81d76adb44c8a37f46b647bc0905e69c64a06 100644
--- a/third_party/WebKit/Source/core/paint/PaintInvalidator.h
+++ b/third_party/WebKit/Source/core/paint/PaintInvalidator.h
@@ -40,6 +40,8 @@ struct PaintInvalidatorContext {
ForcedSubtreeInvalidationRectUpdate = 1 << 1,
ForcedSubtreeFullInvalidation = 1 << 2,
ForcedSubtreeFullInvalidationForStackedContents = 1 << 3,
+ // TODO(crbug.com/637313): This is temporary before we support filters in paint property tree.
+ ForcedSubtreeSlowPathRect = 1 << 4,
};
unsigned forcedSubtreeInvalidationFlags = 0;

Powered by Google App Engine
This is Rietveld 408576698