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

Unified Diff: Source/core/layout/LayoutFrame.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/LayoutFlowThread.h ('k') | Source/core/layout/LayoutFrameSet.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/LayoutFrame.h
diff --git a/Source/core/layout/LayoutFrame.h b/Source/core/layout/LayoutFrame.h
index 13e9bce78b12b1d5da38ebc37058054692495dd4..8753c6c957f86481100e4889593443c084dcbde7 100644
--- a/Source/core/layout/LayoutFrame.h
+++ b/Source/core/layout/LayoutFrame.h
@@ -36,12 +36,12 @@ public:
FrameEdgeInfo edgeInfo() const;
- virtual const char* name() const override { return "LayoutFrame"; }
+ const char* name() const override { return "LayoutFrame"; }
private:
- virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectFrame || LayoutPart::isOfType(type); }
+ bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectFrame || LayoutPart::isOfType(type); }
- virtual void updateFromElement() override;
+ void updateFromElement() override;
};
DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutFrame, isFrame());
« no previous file with comments | « Source/core/layout/LayoutFlowThread.h ('k') | Source/core/layout/LayoutFrameSet.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698