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

Unified Diff: third_party/WebKit/Source/core/layout/PaintInvalidationState.h

Issue 2888253002: Skip both paint and raster invalidation for LayoutSVGHiddenContainer subtree (Closed)
Patch Set: Rebaseline-cl Created 3 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/core/layout/PaintInvalidationState.h
diff --git a/third_party/WebKit/Source/core/layout/PaintInvalidationState.h b/third_party/WebKit/Source/core/layout/PaintInvalidationState.h
index f86201511419d4aa971cd1dec54123ac42024809..616615950594e8294231a4bd1ecca97276f87a09 100644
--- a/third_party/WebKit/Source/core/layout/PaintInvalidationState.h
+++ b/third_party/WebKit/Source/core/layout/PaintInvalidationState.h
@@ -65,25 +65,25 @@ class CORE_EXPORT PaintInvalidationState {
bool ForcedSubtreeInvalidationCheckingWithinContainer() const {
return forced_subtree_invalidation_flags_ &
- PaintInvalidatorContext::kForcedSubtreeInvalidationChecking;
+ PaintInvalidatorContext::kSubtreeInvalidationChecking;
}
void SetForceSubtreeInvalidationCheckingWithinContainer() {
forced_subtree_invalidation_flags_ |=
- PaintInvalidatorContext::kForcedSubtreeInvalidationChecking;
+ PaintInvalidatorContext::kSubtreeInvalidationChecking;
}
bool ForcedSubtreeFullInvalidationWithinContainer() const {
return forced_subtree_invalidation_flags_ &
- PaintInvalidatorContext::kForcedSubtreeFullInvalidation;
+ PaintInvalidatorContext::kSubtreeFullInvalidation;
}
bool ForcedSubtreeInvalidationRectUpdateWithinContainerOnly() const {
return forced_subtree_invalidation_flags_ ==
- PaintInvalidatorContext::kForcedSubtreeVisualRectUpdate;
+ PaintInvalidatorContext::kSubtreeVisualRectUpdate;
}
void SetForceSubtreeInvalidationRectUpdateWithinContainer() {
forced_subtree_invalidation_flags_ |=
- PaintInvalidatorContext::kForcedSubtreeVisualRectUpdate;
+ PaintInvalidatorContext::kSubtreeVisualRectUpdate;
}
const LayoutBoxModelObject& PaintInvalidationContainer() const {

Powered by Google App Engine
This is Rietveld 408576698