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

Unified Diff: Source/core/layout/compositing/CompositedDeprecatedPaintLayerMapping.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/CompositedDeprecatedPaintLayerMapping.h
diff --git a/Source/core/layout/compositing/CompositedDeprecatedPaintLayerMapping.h b/Source/core/layout/compositing/CompositedDeprecatedPaintLayerMapping.h
index 2f6f31d48ec47153e6a730791bc788789f5af95e..77d9ebb898a0a268effb382f0391dd1d5654b603 100644
--- a/Source/core/layout/compositing/CompositedDeprecatedPaintLayerMapping.h
+++ b/Source/core/layout/compositing/CompositedDeprecatedPaintLayerMapping.h
@@ -70,7 +70,7 @@ class CompositedDeprecatedPaintLayerMapping final : public GraphicsLayerClient {
WTF_MAKE_NONCOPYABLE(CompositedDeprecatedPaintLayerMapping); WTF_MAKE_FAST_ALLOCATED(CompositedDeprecatedPaintLayerMapping);
public:
explicit CompositedDeprecatedPaintLayerMapping(DeprecatedPaintLayer&);
- virtual ~CompositedDeprecatedPaintLayerMapping();
+ ~CompositedDeprecatedPaintLayerMapping() override;
DeprecatedPaintLayer& owningLayer() const { return m_owningLayer; }
@@ -140,12 +140,12 @@ public:
void updateShouldFlattenTransform();
// GraphicsLayerClient interface
- virtual void notifyAnimationStarted(const GraphicsLayer*, double monotonicTime, int group) override;
- virtual void paintContents(const GraphicsLayer*, GraphicsContext&, GraphicsLayerPaintingPhase, const IntRect& clip) override;
- virtual bool isTrackingPaintInvalidations() const override;
+ void notifyAnimationStarted(const GraphicsLayer*, double monotonicTime, int group) override;
+ void paintContents(const GraphicsLayer*, GraphicsContext&, GraphicsLayerPaintingPhase, const IntRect& clip) override;
+ bool isTrackingPaintInvalidations() const override;
#if ENABLE(ASSERT)
- virtual void verifyNotPainting() override;
+ void verifyNotPainting() override;
#endif
LayoutRect contentsBox() const;
@@ -180,7 +180,7 @@ public:
void assertNeedsToUpdateGraphicsLayerBitsCleared() { ASSERT(m_pendingUpdateScope == GraphicsLayerUpdateNone); }
#endif
- virtual String debugName(const GraphicsLayer*) override;
+ String debugName(const GraphicsLayer*) override;
LayoutSize contentOffsetInCompositingLayer() const;
« no previous file with comments | « Source/core/layout/TableLayoutAlgorithmFixed.h ('k') | Source/core/layout/compositing/DeprecatedPaintLayerCompositor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698