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

Unified Diff: Source/core/rendering/RenderIFrame.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/RenderHTMLCanvas.h ('k') | Source/core/rendering/RenderImage.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderIFrame.h
diff --git a/Source/core/rendering/RenderIFrame.h b/Source/core/rendering/RenderIFrame.h
index 68aae54df3c014fc939a05254d21c1a320510303..f83120c6cba42aa5956a072b2cfcd9f6085125bf 100644
--- a/Source/core/rendering/RenderIFrame.h
+++ b/Source/core/rendering/RenderIFrame.h
@@ -30,21 +30,21 @@
namespace blink {
-class RenderIFrame FINAL : public RenderPart {
+class RenderIFrame final : public RenderPart {
public:
explicit RenderIFrame(Element*);
private:
- virtual bool shouldComputeSizeAsReplaced() const OVERRIDE;
- virtual bool isInlineBlockOrInlineTable() const OVERRIDE;
+ virtual bool shouldComputeSizeAsReplaced() const override;
+ virtual bool isInlineBlockOrInlineTable() const override;
- virtual void layout() OVERRIDE;
+ virtual void layout() override;
- virtual bool isRenderIFrame() const OVERRIDE { return true; }
+ virtual bool isRenderIFrame() const override { return true; }
- virtual const char* renderName() const OVERRIDE { return "RenderPartObject"; } // Lying for now to avoid breaking tests
+ virtual const char* renderName() const override { return "RenderPartObject"; } // Lying for now to avoid breaking tests
- virtual LayerType layerTypeRequired() const OVERRIDE;
+ virtual LayerType layerTypeRequired() const override;
};
DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderIFrame, isRenderIFrame());
« no previous file with comments | « Source/core/rendering/RenderHTMLCanvas.h ('k') | Source/core/rendering/RenderImage.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698