1234567891011121314151617181920 |
- #ifndef BASE_I18N_CHARACTER_ENCODING_H_
- #define BASE_I18N_CHARACTER_ENCODING_H_
- #include <string>
- #include "base/i18n/base_i18n_export.h"
- namespace base {
- BASE_I18N_EXPORT std::string GetCanonicalEncodingNameByAliasName(
- const std::string& alias_name);
- }
- #endif
|