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

Unified Diff: Source/core/layout/LayoutIFrame.h

Issue 1231363003: Fix virtual/override/final usage in Source/core/layout/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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/layout/LayoutHTMLCanvas.h ('k') | Source/core/layout/LayoutImage.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/LayoutIFrame.h
diff --git a/Source/core/layout/LayoutIFrame.h b/Source/core/layout/LayoutIFrame.h
index 542c79afa2f0d08845aa20d3948ede94711660be..8945bd634462375e39a664ac0318999c91c2e442 100644
--- a/Source/core/layout/LayoutIFrame.h
+++ b/Source/core/layout/LayoutIFrame.h
@@ -34,17 +34,17 @@ class LayoutIFrame final : public LayoutPart {
public:
explicit LayoutIFrame(Element*);
- virtual const char* name() const override { return "LayoutIFrame"; }
+ const char* name() const override { return "LayoutIFrame"; }
private:
- virtual bool shouldComputeSizeAsReplaced() const override;
- virtual bool isInlineBlockOrInlineTable() const override;
+ bool shouldComputeSizeAsReplaced() const override;
+ bool isInlineBlockOrInlineTable() const override;
- virtual void layout() override;
+ void layout() override;
- virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectLayoutIFrame || LayoutPart::isOfType(type); }
+ bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectLayoutIFrame || LayoutPart::isOfType(type); }
- virtual DeprecatedPaintLayerType layerTypeRequired() const override;
+ DeprecatedPaintLayerType layerTypeRequired() const override;
};
DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutIFrame, isLayoutIFrame());
« no previous file with comments | « Source/core/layout/LayoutHTMLCanvas.h ('k') | Source/core/layout/LayoutImage.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698