| Index: Source/core/layout/compositing/DeprecatedPaintLayerCompositor.h
|
| diff --git a/Source/core/layout/compositing/DeprecatedPaintLayerCompositor.h b/Source/core/layout/compositing/DeprecatedPaintLayerCompositor.h
|
| index 12d0411af64f8b4233ab1c34d35b6587175575a8..a1a124f8ed22bfacb4e0457f86ce9c63381042cc 100644
|
| --- a/Source/core/layout/compositing/DeprecatedPaintLayerCompositor.h
|
| +++ b/Source/core/layout/compositing/DeprecatedPaintLayerCompositor.h
|
| @@ -68,7 +68,7 @@ class CORE_EXPORT DeprecatedPaintLayerCompositor final : public GraphicsLayerCli
|
| WTF_MAKE_FAST_ALLOCATED(DeprecatedPaintLayerCompositor);
|
| public:
|
| explicit DeprecatedPaintLayerCompositor(LayoutView&);
|
| - virtual ~DeprecatedPaintLayerCompositor();
|
| + ~DeprecatedPaintLayerCompositor() override;
|
|
|
| void updateIfNeededRecursive();
|
|
|
| @@ -156,7 +156,7 @@ public:
|
| void resetTrackedPaintInvalidationRects();
|
| void setTracksPaintInvalidations(bool);
|
|
|
| - virtual String debugName(const GraphicsLayer*) override;
|
| + String debugName(const GraphicsLayer*) override;
|
| DocumentLifecycle& lifecycle() const;
|
|
|
| bool needsUpdateDescendantDependentFlags() const { return m_needsUpdateDescendantDependentFlags; }
|
| @@ -181,9 +181,9 @@ private:
|
| #endif
|
|
|
| // GraphicsLayerClient implementation
|
| - virtual void paintContents(const GraphicsLayer*, GraphicsContext&, GraphicsLayerPaintingPhase, const IntRect&) override;
|
| + void paintContents(const GraphicsLayer*, GraphicsContext&, GraphicsLayerPaintingPhase, const IntRect&) override;
|
|
|
| - virtual bool isTrackingPaintInvalidations() const override;
|
| + bool isTrackingPaintInvalidations() const override;
|
|
|
| void updateWithoutAcceleratedCompositing(CompositingUpdateType);
|
| void updateIfNeeded();
|
|
|