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

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, 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/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 98e6a4b96bd441d1373c437a312ca3882556afe8..4f82bc01516aeccfc53d1467a4388ed4ccb791f4 100644
--- a/third_party/WebKit/Source/core/layout/compositing/PaintLayerCompositor.h
+++ b/third_party/WebKit/Source/core/layout/compositing/PaintLayerCompositor.h
@@ -161,7 +161,7 @@ public:
GraphicsLayer* layerForVerticalScrollbar() const { return m_layerForVerticalScrollbar.get(); }
GraphicsLayer* layerForScrollCorner() const { return m_layerForScrollCorner.get(); }
- void setTracksPaintInvalidations(bool);
+ void setTracksRasterInvalidations(bool);
String debugName(const GraphicsLayer*) const override;
DocumentLifecycle& lifecycle() const;
@@ -194,7 +194,7 @@ private:
IntRect computeInterestRect(const GraphicsLayer*, const IntRect&) const override;
void paintContents(const GraphicsLayer*, GraphicsContext&, GraphicsLayerPaintingPhase, const IntRect& interestRect) const override;
- bool isTrackingPaintInvalidations() const override;
+ bool isTrackingRasterInvalidations() const override;
void updateWithoutAcceleratedCompositing(CompositingUpdateType);
void updateIfNeeded();
@@ -245,7 +245,7 @@ private:
// 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