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