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: Source/core/layout/compositing/DeprecatedPaintLayerCompositor.h

Issue 1231363003: Fix virtual/override/final usage in Source/core/layout/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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: 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();
« no previous file with comments | « Source/core/layout/compositing/CompositedDeprecatedPaintLayerMapping.h ('k') | Source/core/layout/line/EllipsisBox.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698