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

Unified Diff: third_party/WebKit/Source/core/layout/compositing/PaintLayerCompositor.h

Issue 2380683006: SPv2: Add support for tracking raster paint invalidations in testing. (Closed)
Patch Set: none Created 4 years, 2 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/compositing/PaintLayerCompositor.h
diff --git a/third_party/WebKit/Source/core/layout/compositing/PaintLayerCompositor.h b/third_party/WebKit/Source/core/layout/compositing/PaintLayerCompositor.h
index 99054b8fb49c09bd74c25a23eb4929cb7509b5db..4adb4fb9cca1ffe4d3893b6aa4e884f746fb615f 100644
--- a/third_party/WebKit/Source/core/layout/compositing/PaintLayerCompositor.h
+++ b/third_party/WebKit/Source/core/layout/compositing/PaintLayerCompositor.h
@@ -170,7 +170,7 @@ class CORE_EXPORT PaintLayerCompositor final : public GraphicsLayerClient {
return m_layerForScrollCorner.get();
}
- void setTracksPaintInvalidations(bool);
+ void setTracksRasterInvalidations(bool);
String debugName(const GraphicsLayer*) const override;
DocumentLifecycle& lifecycle() const;
@@ -213,7 +213,7 @@ class CORE_EXPORT PaintLayerCompositor final : public GraphicsLayerClient {
GraphicsLayerPaintingPhase,
const IntRect& interestRect) const override;
- bool isTrackingPaintInvalidations() const override;
+ bool isTrackingRasterInvalidations() const override;
void updateWithoutAcceleratedCompositing(CompositingUpdateType);
void updateIfNeeded();
@@ -264,7 +264,7 @@ class CORE_EXPORT PaintLayerCompositor final : public GraphicsLayerClient {
// m_compositingDirty.
bool m_rootShouldAlwaysCompositeDirty;
bool m_needsUpdateFixedBackground;
- bool m_isTrackingPaintInvalidations; // Used for testing.
+ bool m_isTrackingRasterInvalidations; // Used for testing.
bool m_inOverlayFullscreenVideo;
bool m_needsUpdateDescendantDependentFlags;

Powered by Google App Engine
This is Rietveld 408576698