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

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

Issue 162883002: Primary FontData of FontFallbackList should have space character (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 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/FontFallbackList.cpp ('k') | no next file » | 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 31a2166132c723a3d63e5442317607b59f7ee476..600d845c9ef6d47a5449055e56d288e2ce336c76 100644
--- a/Source/platform/fonts/SegmentedFontData.h
+++ b/Source/platform/fonts/SegmentedFontData.h
@@ -62,6 +62,7 @@ public:
void appendRange(const FontDataRange& range) { m_ranges.append(range); }
unsigned numRanges() const { return m_ranges.size(); }
const FontDataRange& rangeAt(unsigned i) const { return m_ranges[i]; }
+ bool containsCharacter(UChar32) const;
#ifndef NDEBUG
virtual String description() const OVERRIDE;
@@ -78,8 +79,6 @@ private:
virtual bool isLoadingFallback() const OVERRIDE;
virtual bool isSegmented() const OVERRIDE;
- bool containsCharacter(UChar32) const;
-
Vector<FontDataRange, 1> m_ranges;
};
« no previous file with comments | « Source/platform/fonts/FontFallbackList.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698