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

Unified Diff: tests/FontConfigParser.cpp

Issue 915443002: Additional cleanups to Android config parsing. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 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
Index: tests/FontConfigParser.cpp
diff --git a/tests/FontConfigParser.cpp b/tests/FontConfigParser.cpp
index 744a41e5f2900c770ec4e6c1a620796beed53dbe..4e123d8824b7e9375cff13f2985b48f81f0c9539 100644
--- a/tests/FontConfigParser.cpp
+++ b/tests/FontConfigParser.cpp
@@ -37,9 +37,7 @@ void DumpLoadedFonts(SkTDArray<FontFamily*> fontFamilies) {
case kCompact_FontVariant: SkDebugf(" compact\n"); break;
default: break;
}
- if (fontFamilies[i]->fBasePath) {
- SkDebugf(" basePath %s\n", fontFamilies[i]->fBasePath);
- }
+ SkDebugf(" basePath %s\n", fontFamilies[i]->fBasePath.c_str());
scroggo 2015/02/10 13:59:41 I'm guessing this bit-rotted due to SK_DEBUG_FONTS
bungeman-skia 2015/02/10 15:34:12 I think it might be more due to the fact that I di
if (!fontFamilies[i]->fLanguage.getTag().isEmpty()) {
SkDebugf(" language %s\n", fontFamilies[i]->fLanguage.getTag().c_str());
}
« src/ports/SkFontConfigParser_android.cpp ('K') | « src/ports/SkFontConfigParser_android.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698