Index: third_party/WebKit/Source/platform/fonts/win/FontPlatformDataWin.cpp |
diff --git a/third_party/WebKit/Source/platform/fonts/win/FontPlatformDataWin.cpp b/third_party/WebKit/Source/platform/fonts/win/FontPlatformDataWin.cpp |
index 4f1e69cc32164b035f61f78bdebb851b10acf0ec..6031bf38b05555976f1377310ae0c2c59977bf90 100644 |
--- a/third_party/WebKit/Source/platform/fonts/win/FontPlatformDataWin.cpp |
+++ b/third_party/WebKit/Source/platform/fonts/win/FontPlatformDataWin.cpp |
@@ -106,9 +106,10 @@ static int computePaintTextFlags(String fontFamilyName) { |
textFlags = SkPaint::kAntiAlias_Flag | lcdFlag; |
} |
- // Many web-fonts are so poorly hinted that they are terrible to read when drawn in BW. |
- // In these cases, we have decided to FORCE these fonts to be drawn with at least grayscale AA, |
- // even when the System (getSystemTextFlags) tells us to draw only in BW. |
+ // Many web-fonts are so poorly hinted that they are terrible to read when |
+ // drawn in BW. In these cases, we have decided to FORCE these fonts to be |
+ // drawn with at least grayscale AA, even when the System (getSystemTextFlags) |
+ // tells us to draw only in BW. |
if (isWebFont(fontFamilyName)) |
textFlags |= SkPaint::kAntiAlias_Flag; |