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

Unified Diff: src/ports/SkFontConfigParser_android.h

Issue 17691002: Ensure we use the current locale when looking up fallback fonts per character (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: fix locale Created 7 years, 6 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: src/ports/SkFontConfigParser_android.h
diff --git a/src/ports/SkFontConfigParser_android.h b/src/ports/SkFontConfigParser_android.h
index c5cd3eb8b7390cbdd5214cf52af4a4803d269d96..fd64496f774fe1f9f0851a2fa10f3b0dd5918064 100644
--- a/src/ports/SkFontConfigParser_android.h
+++ b/src/ports/SkFontConfigParser_android.h
@@ -11,6 +11,7 @@
#include "SkTypes.h"
#include "SkPaintOptionsAndroid.h"
+#include "SkString.h"
#include "SkTDArray.h"
struct FontFileInfo {
@@ -53,12 +54,7 @@ void GetTestFontFamilies(SkTDArray<FontFamily*> &fontFamilies,
const char* testMainConfigFile,
const char* testFallbackConfigFile);
-struct AndroidLocale {
- char language[3];
- char region[3];
-};
-
-void GetLocale(AndroidLocale &locale);
+SkString GetLocale();
} // SkFontConfigParser namespace

Powered by Google App Engine
This is Rietveld 408576698