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

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

Issue 2575653002: [SPInvalidation] Invalidate all paint and properties for printing (Closed)
Patch Set: Add a passing test in TestExpectations Created 4 years 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 e93ec3c9522cfefb34f97121c49b9be527e70928..873b09be077853b2058b499f537ba9b697e83d20 100644
--- a/third_party/WebKit/Source/core/paint/PaintInvalidator.h
+++ b/third_party/WebKit/Source/core/paint/PaintInvalidator.h
@@ -49,6 +49,11 @@ struct PaintInvalidatorContext {
// TODO(crbug.com/637313): This is temporary before we support filters in
// paint property tree.
ForcedSubtreeSlowPathRect = 1 << 5,
+ // For SPv1, all of the above flags don't cross paint invalidation container
+ // boundary. ForceWholeTreeFullInvalidation does.
+ // TODO(wangxianzhu): Combine this with ForcedSubtreeFullInvalidation when
+ // removing non-SPv2 code.
+ ForcedWholeTreeFullInvalidation = 1 << 6,
};
unsigned forcedSubtreeInvalidationFlags = 0;
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutView.cpp ('k') | third_party/WebKit/Source/core/paint/PaintInvalidator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698