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

Unified Diff: Source/platform/fonts/SegmentedFontData.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/GlyphPageTreeNodeTest.cpp ('k') | Source/platform/fonts/SimpleFontData.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/fonts/SegmentedFontData.h
diff --git a/Source/platform/fonts/SegmentedFontData.h b/Source/platform/fonts/SegmentedFontData.h
index 2b77c9207f7a6ca68d56a9ca3ec99cf173f8d6b0..325137e2369de23d8a7f25271e4975513294beae 100644
--- a/Source/platform/fonts/SegmentedFontData.h
+++ b/Source/platform/fonts/SegmentedFontData.h
@@ -57,7 +57,7 @@ class PLATFORM_EXPORT SegmentedFontData : public FontData {
public:
static PassRefPtr<SegmentedFontData> create() { return adoptRef(new SegmentedFontData); }
- virtual ~SegmentedFontData();
+ ~SegmentedFontData() override;
void appendRange(const FontDataRange& range) { m_ranges.append(range); }
unsigned numRanges() const { return m_ranges.size(); }
@@ -67,13 +67,13 @@ public:
private:
SegmentedFontData() { }
- virtual const SimpleFontData* fontDataForCharacter(UChar32) const override;
+ const SimpleFontData* fontDataForCharacter(UChar32) const override;
- virtual bool isCustomFont() const override;
- virtual bool isLoading() const override;
- virtual bool isLoadingFallback() const override;
- virtual bool isSegmented() const override;
- virtual bool shouldSkipDrawing() const override;
+ bool isCustomFont() const override;
+ bool isLoading() const override;
+ bool isLoadingFallback() const override;
+ bool isSegmented() const override;
+ bool shouldSkipDrawing() const override;
Vector<FontDataRange, 1> m_ranges;
};
« no previous file with comments | « Source/platform/fonts/GlyphPageTreeNodeTest.cpp ('k') | Source/platform/fonts/SimpleFontData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698