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

Unified Diff: Source/platform/fonts/GlyphPageTreeNode.h

Issue 1213003004: Fix virtual/override/final usage in Source/platform/. (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/platform/fonts/FontCacheTest.cpp ('k') | Source/platform/fonts/GlyphPageTreeNodeTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/fonts/GlyphPageTreeNode.h
diff --git a/Source/platform/fonts/GlyphPageTreeNode.h b/Source/platform/fonts/GlyphPageTreeNode.h
index eba2adc5e2709317f7d3bb7cb7f949fc74bf4837..a6fac281d94fdd0b563b7faee43b56000695966a 100644
--- a/Source/platform/fonts/GlyphPageTreeNode.h
+++ b/Source/platform/fonts/GlyphPageTreeNode.h
@@ -108,7 +108,7 @@ public:
void pruneCustomFontData(const FontData*);
void pruneFontData(const SimpleFontData*, unsigned level = 0);
- virtual GlyphPage* page(UScriptCode = USCRIPT_COMMON) override final { return m_page.get(); }
+ GlyphPage* page(UScriptCode = USCRIPT_COMMON) final { return m_page.get(); }
GlyphPageTreeNodeBase* getChild(const FontData*, unsigned pageNumber);
GlyphPageTreeNode* getNormalChild(const FontData*, unsigned pageNumber);
@@ -141,7 +141,7 @@ private:
class PLATFORM_EXPORT SystemFallbackGlyphPageTreeNode : public GlyphPageTreeNodeBase {
public:
- virtual GlyphPage* page(UScriptCode = USCRIPT_COMMON) override final;
+ GlyphPage* page(UScriptCode = USCRIPT_COMMON) final;
private:
friend class GlyphPageTreeNode;
« no previous file with comments | « Source/platform/fonts/FontCacheTest.cpp ('k') | Source/platform/fonts/GlyphPageTreeNodeTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698