| 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;
 | 
|  
 | 
| 
 |