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

Unified Diff: Source/core/rendering/compositing/CompositedLayerMapping.h

Issue 640593002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/[css|rendering|clipboard] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased the patch Created 6 years, 2 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/rendering/compositing/CompositedLayerMapping.h
diff --git a/Source/core/rendering/compositing/CompositedLayerMapping.h b/Source/core/rendering/compositing/CompositedLayerMapping.h
index a843ac6b5d59ad6adb03a5bdadf23fc591bf40b8..ee8c4c4f815115d2b9003fb61747167317323448 100644
--- a/Source/core/rendering/compositing/CompositedLayerMapping.h
+++ b/Source/core/rendering/compositing/CompositedLayerMapping.h
@@ -66,7 +66,7 @@ enum GraphicsLayerUpdateScope {
//
// Currently (Oct. 2013) there is one CompositedLayerMapping for each RenderLayer,
// but this is likely to evolve soon.
-class CompositedLayerMapping FINAL : public GraphicsLayerClient {
+class CompositedLayerMapping final : public GraphicsLayerClient {
WTF_MAKE_NONCOPYABLE(CompositedLayerMapping); WTF_MAKE_FAST_ALLOCATED;
public:
explicit CompositedLayerMapping(RenderLayer&);
@@ -152,12 +152,12 @@ public:
void updateShouldFlattenTransform();
// GraphicsLayerClient interface
- virtual void notifyAnimationStarted(const GraphicsLayer*, double monotonicTime) OVERRIDE;
- virtual void paintContents(const GraphicsLayer*, GraphicsContext&, GraphicsLayerPaintingPhase, const IntRect& clip) OVERRIDE;
- virtual bool isTrackingPaintInvalidations() const OVERRIDE;
+ virtual void notifyAnimationStarted(const GraphicsLayer*, double monotonicTime) override;
+ virtual void paintContents(const GraphicsLayer*, GraphicsContext&, GraphicsLayerPaintingPhase, const IntRect& clip) override;
+ virtual bool isTrackingPaintInvalidations() const override;
#if ENABLE(ASSERT)
- virtual void verifyNotPainting() OVERRIDE;
+ virtual void verifyNotPainting() override;
#endif
LayoutRect contentsBox() const;
@@ -192,7 +192,7 @@ public:
void assertNeedsToUpdateGraphicsLayerBitsCleared() { ASSERT(m_pendingUpdateScope == GraphicsLayerUpdateNone); }
#endif
- virtual String debugName(const GraphicsLayer*) OVERRIDE;
+ virtual String debugName(const GraphicsLayer*) override;
LayoutSize contentOffsetInCompositingLayer() const;
« no previous file with comments | « Source/core/rendering/TrailingFloatsRootInlineBox.h ('k') | Source/core/rendering/compositing/RenderLayerCompositor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698