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

Unified Diff: Source/platform/fonts/FontPlatformData.cpp

Issue 275913005: Remove usePrinterFont() property of FontDescription (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebaselinining small caps cases, and subpixel virtual set Created 6 years, 7 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/FontPlatformData.h ('k') | Source/platform/fonts/cocoa/FontPlatformDataCocoa.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/fonts/FontPlatformData.cpp
diff --git a/Source/platform/fonts/FontPlatformData.cpp b/Source/platform/fonts/FontPlatformData.cpp
index 85667d93cb1f8fd0795531b37d8806386e5da74c..ab891966e16a9c42143be01b11aa6dd060c5e59f 100644
--- a/Source/platform/fonts/FontPlatformData.cpp
+++ b/Source/platform/fonts/FontPlatformData.cpp
@@ -45,9 +45,6 @@ FontPlatformData::FontPlatformData(WTF::HashTableDeletedValueType)
#endif
, m_isColorBitmapFont(false)
, m_isCompositeFontReference(false)
-#if OS(MACOSX)
- , m_isPrinterFont(false)
-#endif
{
}
@@ -62,9 +59,6 @@ FontPlatformData::FontPlatformData()
#endif
, m_isColorBitmapFont(false)
, m_isCompositeFontReference(false)
-#if OS(MACOSX)
- , m_isPrinterFont(false)
-#endif
{
}
@@ -79,9 +73,6 @@ FontPlatformData::FontPlatformData(float size, bool syntheticBold, bool syntheti
#endif
, m_isColorBitmapFont(false)
, m_isCompositeFontReference(false)
-#if OS(MACOSX)
- , m_isPrinterFont(false)
-#endif
{
}
@@ -96,7 +87,6 @@ FontPlatformData::FontPlatformData(CGFontRef cgFont, float size, bool syntheticB
, m_cgFont(cgFont)
, m_isColorBitmapFont(false)
, m_isCompositeFontReference(false)
- , m_isPrinterFont(false)
{
}
#endif
@@ -109,9 +99,6 @@ FontPlatformData::FontPlatformData(const FontPlatformData& source)
, m_widthVariant(source.m_widthVariant)
, m_isColorBitmapFont(source.m_isColorBitmapFont)
, m_isCompositeFontReference(source.m_isCompositeFontReference)
-#if OS(MACOSX)
- , m_isPrinterFont(source.m_isPrinterFont)
-#endif
{
platformDataInit(source);
}
@@ -129,9 +116,6 @@ const FontPlatformData& FontPlatformData::operator=(const FontPlatformData& othe
m_widthVariant = other.m_widthVariant;
m_isColorBitmapFont = other.m_isColorBitmapFont;
m_isCompositeFontReference = other.m_isCompositeFontReference;
-#if OS(MACOSX)
- m_isPrinterFont = other.m_isPrinterFont;
-#endif
return platformDataAssign(other);
}
« no previous file with comments | « Source/platform/fonts/FontPlatformData.h ('k') | Source/platform/fonts/cocoa/FontPlatformDataCocoa.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698