1234567891011121314151617181920212223242526272829 |
- #ifndef BASE_ANDROID_LOCALE_UTILS_H_
- #define BASE_ANDROID_LOCALE_UTILS_H_
- #include <jni.h>
- #include <string>
- #include "base/base_export.h"
- namespace base {
- namespace android {
- BASE_EXPORT std::string GetDefaultCountryCode();
- BASE_EXPORT std::string GetDefaultLocaleString();
- BASE_EXPORT std::string GetDefaultLocaleListString();
- }
- }
- #endif
|