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

Unified Diff: Source/core/rendering/RenderRubyBase.h

Issue 129173004: Update rendering classes to use OVERRIDE / FINAL when needed (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 6 years, 11 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/RenderRuby.h ('k') | Source/core/rendering/RenderRubyRun.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderRubyBase.h
diff --git a/Source/core/rendering/RenderRubyBase.h b/Source/core/rendering/RenderRubyBase.h
index 197aebba5076e2f40bb8c118df6715266bd61c13..800515dda14c13216a13b8c348744110950758e3 100644
--- a/Source/core/rendering/RenderRubyBase.h
+++ b/Source/core/rendering/RenderRubyBase.h
@@ -43,17 +43,17 @@ public:
static RenderRubyBase* createAnonymous(Document*);
- virtual const char* renderName() const { return "RenderRubyBase (anonymous)"; }
+ virtual const char* renderName() const OVERRIDE { return "RenderRubyBase (anonymous)"; }
- virtual bool isRubyBase() const { return true; }
+ virtual bool isRubyBase() const OVERRIDE { return true; }
- virtual bool isChildAllowed(RenderObject*, RenderStyle*) const;
+ virtual bool isChildAllowed(RenderObject*, RenderStyle*) const OVERRIDE;
private:
RenderRubyBase();
- virtual ETextAlign textAlignmentForLine(bool endsWithSoftBreak) const;
- virtual void adjustInlineDirectionLineBounds(int expansionOpportunityCount, float& logicalLeft, float& logicalWidth) const;
+ virtual ETextAlign textAlignmentForLine(bool endsWithSoftBreak) const OVERRIDE;
+ virtual void adjustInlineDirectionLineBounds(int expansionOpportunityCount, float& logicalLeft, float& logicalWidth) const OVERRIDE;
virtual bool supportsPartialLayout() const OVERRIDE { return false; }
« no previous file with comments | « Source/core/rendering/RenderRuby.h ('k') | Source/core/rendering/RenderRubyRun.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698