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

Unified Diff: Source/core/rendering/compositing/RenderLayerCompositor.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
« no previous file with comments | « Source/core/rendering/compositing/CompositedLayerMapping.h ('k') | Source/core/rendering/shapes/BoxShape.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/compositing/RenderLayerCompositor.h
diff --git a/Source/core/rendering/compositing/RenderLayerCompositor.h b/Source/core/rendering/compositing/RenderLayerCompositor.h
index b5f360cbd9269a797b88138bc595a30bf7588350..9d44eeb81717509fa086380ad69186759d44bee0 100644
--- a/Source/core/rendering/compositing/RenderLayerCompositor.h
+++ b/Source/core/rendering/compositing/RenderLayerCompositor.h
@@ -62,7 +62,7 @@ enum CompositingStateTransitionType {
//
// There is one RenderLayerCompositor per RenderView.
-class RenderLayerCompositor FINAL : public GraphicsLayerClient {
+class RenderLayerCompositor final : public GraphicsLayerClient {
WTF_MAKE_FAST_ALLOCATED;
public:
explicit RenderLayerCompositor(RenderView&);
@@ -154,7 +154,7 @@ public:
void resetTrackedPaintInvalidationRects();
void setTracksPaintInvalidations(bool);
- virtual String debugName(const GraphicsLayer*) OVERRIDE;
+ virtual String debugName(const GraphicsLayer*) override;
DocumentLifecycle& lifecycle() const;
void updatePotentialCompositingReasonsFromStyle(RenderLayer*);
@@ -178,10 +178,10 @@ private:
#endif
// GraphicsLayerClient implementation
- virtual void notifyAnimationStarted(const GraphicsLayer*, double) OVERRIDE { }
- virtual void paintContents(const GraphicsLayer*, GraphicsContext&, GraphicsLayerPaintingPhase, const IntRect&) OVERRIDE;
+ virtual void notifyAnimationStarted(const GraphicsLayer*, double) override { }
+ virtual void paintContents(const GraphicsLayer*, GraphicsContext&, GraphicsLayerPaintingPhase, const IntRect&) override;
- virtual bool isTrackingPaintInvalidations() const OVERRIDE;
+ virtual bool isTrackingPaintInvalidations() const override;
void updateWithoutAcceleratedCompositing(CompositingUpdateType);
void updateIfNeeded();
« no previous file with comments | « Source/core/rendering/compositing/CompositedLayerMapping.h ('k') | Source/core/rendering/shapes/BoxShape.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698