| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2011 The Android Open Source Project | 2 * Copyright 2011 The Android Open Source Project |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #ifndef SKFONTCONFIGPARSER_ANDROID_H_ | 8 #ifndef SKFONTCONFIGPARSER_ANDROID_H_ |
| 9 #define SKFONTCONFIGPARSER_ANDROID_H_ | 9 #define SKFONTCONFIGPARSER_ANDROID_H_ |
| 10 | 10 |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 void GetFontFamilies(SkTDArray<FontFamily*> &fontFamilies); | 48 void GetFontFamilies(SkTDArray<FontFamily*> &fontFamilies); |
| 49 | 49 |
| 50 /** | 50 /** |
| 51 * Parses all test font configuration files and returns the results in an | 51 * Parses all test font configuration files and returns the results in an |
| 52 * array of FontFamily structures. | 52 * array of FontFamily structures. |
| 53 */ | 53 */ |
| 54 void GetTestFontFamilies(SkTDArray<FontFamily*> &fontFamilies, | 54 void GetTestFontFamilies(SkTDArray<FontFamily*> &fontFamilies, |
| 55 const char* testMainConfigFile, | 55 const char* testMainConfigFile, |
| 56 const char* testFallbackConfigFile); | 56 const char* testFallbackConfigFile); |
| 57 | 57 |
| 58 SkString GetLocale(); | |
| 59 | |
| 60 } // SkFontConfigParser namespace | 58 } // SkFontConfigParser namespace |
| 61 | 59 |
| 62 #endif /* SKFONTCONFIGPARSER_ANDROID_H_ */ | 60 #endif /* SKFONTCONFIGPARSER_ANDROID_H_ */ |
| OLD | NEW |