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

Unified Diff: Source/core/layout/LayoutPagedFlowThread.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/LayoutObject.h ('k') | Source/core/layout/LayoutPart.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/LayoutPagedFlowThread.h
diff --git a/Source/core/layout/LayoutPagedFlowThread.h b/Source/core/layout/LayoutPagedFlowThread.h
index c01c708bb77883437bc797ba8e6bf0c82dc93f15..f5aa305ea5958eb3092feb4bcc08d243815efac4 100644
--- a/Source/core/layout/LayoutPagedFlowThread.h
+++ b/Source/core/layout/LayoutPagedFlowThread.h
@@ -22,14 +22,14 @@ public:
// Return the number of pages. Will never be less than 1.
int pageCount();
- virtual bool isLayoutPagedFlowThread() const override { return true; }
- virtual const char* name() const override { return "LayoutPagedFlowThread"; }
- virtual bool needsNewWidth() const override;
- virtual void updateLogicalWidth() override;
+ bool isLayoutPagedFlowThread() const override { return true; }
+ const char* name() const override { return "LayoutPagedFlowThread"; }
+ bool needsNewWidth() const override;
+ void updateLogicalWidth() override;
virtual void layout();
private:
- virtual bool descendantIsValidColumnSpanner(LayoutObject* /*descendant*/) const override { return false; }
+ bool descendantIsValidColumnSpanner(LayoutObject* /*descendant*/) const override { return false; }
};
} // namespace blink
« no previous file with comments | « Source/core/layout/LayoutObject.h ('k') | Source/core/layout/LayoutPart.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698