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

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

Issue 2483953002: Separate forced subtree invalidation reasons for location change and SVG resource change (Closed)
Patch Set: rebaseline-cl Created 4 years, 1 month 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 567f430a9a09b4cbdf8497ab92961976683ca1d9..7813bdb83e2c72849a4ecd4420f15412f1f795c9 100644
--- a/third_party/WebKit/Source/core/paint/PaintInvalidator.h
+++ b/third_party/WebKit/Source/core/paint/PaintInvalidator.h
@@ -45,9 +45,10 @@ struct PaintInvalidatorContext {
ForcedSubtreeInvalidationRectUpdate = 1 << 1,
ForcedSubtreeFullInvalidation = 1 << 2,
ForcedSubtreeFullInvalidationForStackedContents = 1 << 3,
+ ForcedSubtreeSVGResourceChange = 1 << 4,
// TODO(crbug.com/637313): This is temporary before we support filters in
// paint property tree.
- ForcedSubtreeSlowPathRect = 1 << 4,
+ ForcedSubtreeSlowPathRect = 1 << 5,
};
unsigned forcedSubtreeInvalidationFlags = 0;

Powered by Google App Engine
This is Rietveld 408576698