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

Unified Diff: Source/core/rendering/RenderTableCol.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/RenderTableCell.h ('k') | Source/core/rendering/RenderTableRow.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderTableCol.h
diff --git a/Source/core/rendering/RenderTableCol.h b/Source/core/rendering/RenderTableCol.h
index 92f8409d109e32673c2c4c106555e5678031755d..4cb9a3ef374da46cfbcc5c5c7c489af25bf0bc85 100644
--- a/Source/core/rendering/RenderTableCol.h
+++ b/Source/core/rendering/RenderTableCol.h
@@ -33,10 +33,10 @@ namespace blink {
class RenderTable;
class RenderTableCell;
-class RenderTableCol FINAL : public RenderBox {
+class RenderTableCol final : public RenderBox {
public:
explicit RenderTableCol(Element*);
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
RenderObject* firstChild() const { ASSERT(children() == virtualChildren()); return children()->firstChild(); }
@@ -80,25 +80,25 @@ public:
const BorderValue& borderAdjoiningCellAfter(const RenderTableCell*) const;
private:
- virtual RenderObjectChildList* virtualChildren() OVERRIDE { return children(); }
- virtual const RenderObjectChildList* virtualChildren() const OVERRIDE { return children(); }
+ virtual RenderObjectChildList* virtualChildren() override { return children(); }
+ virtual const RenderObjectChildList* virtualChildren() const override { return children(); }
- virtual const char* renderName() const OVERRIDE { return "RenderTableCol"; }
- virtual bool isRenderTableCol() const OVERRIDE { return true; }
- virtual void updateFromElement() OVERRIDE;
- virtual void computePreferredLogicalWidths() OVERRIDE { ASSERT_NOT_REACHED(); }
+ virtual const char* renderName() const override { return "RenderTableCol"; }
+ virtual bool isRenderTableCol() const override { return true; }
+ virtual void updateFromElement() override;
+ virtual void computePreferredLogicalWidths() override { ASSERT_NOT_REACHED(); }
- virtual void insertedIntoTree() OVERRIDE;
- virtual void willBeRemovedFromTree() OVERRIDE;
+ virtual void insertedIntoTree() override;
+ virtual void willBeRemovedFromTree() override;
- virtual bool isChildAllowed(RenderObject*, RenderStyle*) const OVERRIDE;
- virtual bool canHaveChildren() const OVERRIDE;
- virtual LayerType layerTypeRequired() const OVERRIDE { return NoLayer; }
+ virtual bool isChildAllowed(RenderObject*, RenderStyle*) const override;
+ virtual bool canHaveChildren() const override;
+ virtual LayerType layerTypeRequired() const override { return NoLayer; }
- virtual LayoutRect clippedOverflowRectForPaintInvalidation(const RenderLayerModelObject* paintInvalidationContainer, const PaintInvalidationState* = 0) const OVERRIDE;
- virtual void imageChanged(WrappedImagePtr, const IntRect* = 0) OVERRIDE;
+ virtual LayoutRect clippedOverflowRectForPaintInvalidation(const RenderLayerModelObject* paintInvalidationContainer, const PaintInvalidationState* = 0) const override;
+ virtual void imageChanged(WrappedImagePtr, const IntRect* = 0) override;
- virtual void styleDidChange(StyleDifference, const RenderStyle* oldStyle) OVERRIDE;
+ virtual void styleDidChange(StyleDifference, const RenderStyle* oldStyle) override;
RenderTable* table() const;
« no previous file with comments | « Source/core/rendering/RenderTableCell.h ('k') | Source/core/rendering/RenderTableRow.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698