| Index: Source/core/rendering/RenderTableCaption.h
|
| diff --git a/Source/core/rendering/RenderTableCaption.h b/Source/core/rendering/RenderTableCaption.h
|
| index 1a416fcd22253b07bd9340a9450157254fe1aaef..8af21facc3174a721ea2a78682125c22567d2109 100644
|
| --- a/Source/core/rendering/RenderTableCaption.h
|
| +++ b/Source/core/rendering/RenderTableCaption.h
|
| @@ -26,17 +26,17 @@ namespace blink {
|
|
|
| class RenderTable;
|
|
|
| -class RenderTableCaption FINAL : public RenderBlockFlow {
|
| +class RenderTableCaption final : public RenderBlockFlow {
|
| public:
|
| explicit RenderTableCaption(Element*);
|
| virtual ~RenderTableCaption();
|
| - virtual LayoutUnit containingBlockLogicalWidthForContent() const OVERRIDE;
|
| + virtual LayoutUnit containingBlockLogicalWidthForContent() const override;
|
|
|
| private:
|
| - virtual bool isTableCaption() const OVERRIDE { return true; }
|
| + virtual bool isTableCaption() const override { return true; }
|
|
|
| - virtual void insertedIntoTree() OVERRIDE;
|
| - virtual void willBeRemovedFromTree() OVERRIDE;
|
| + virtual void insertedIntoTree() override;
|
| + virtual void willBeRemovedFromTree() override;
|
|
|
| RenderTable* table() const;
|
| };
|
|
|