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

Unified Diff: Source/core/layout/shapes/BoxShape.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/line/TrailingFloatsRootInlineBox.h ('k') | Source/core/layout/shapes/PolygonShape.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/shapes/BoxShape.h
diff --git a/Source/core/layout/shapes/BoxShape.h b/Source/core/layout/shapes/BoxShape.h
index 7acdb0b815e71747624c2874a6f7ba5ef1133bfc..07d30e2223ffb4cd5697b0f4081474de8325e9f3 100644
--- a/Source/core/layout/shapes/BoxShape.h
+++ b/Source/core/layout/shapes/BoxShape.h
@@ -43,10 +43,10 @@ public:
{
}
- virtual LayoutRect shapeMarginLogicalBoundingBox() const override;
- virtual bool isEmpty() const override { return m_bounds.isEmpty(); }
- virtual LineSegment getExcludedInterval(LayoutUnit logicalTop, LayoutUnit logicalHeight) const override;
- virtual void buildDisplayPaths(DisplayPaths&) const override;
+ LayoutRect shapeMarginLogicalBoundingBox() const override;
+ bool isEmpty() const override { return m_bounds.isEmpty(); }
+ LineSegment getExcludedInterval(LayoutUnit logicalTop, LayoutUnit logicalHeight) const override;
+ void buildDisplayPaths(DisplayPaths&) const override;
private:
FloatRoundedRect shapeMarginBounds() const;
« no previous file with comments | « Source/core/layout/line/TrailingFloatsRootInlineBox.h ('k') | Source/core/layout/shapes/PolygonShape.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698