Chromium Code Reviews| Index: ui/base/l10n/l10n_util.h |
| diff --git a/ui/base/l10n/l10n_util.h b/ui/base/l10n/l10n_util.h |
| index 7c26b80346714764111bdb1039333808b662eec3..ac0e9d7b1a1edde3ff51b3377d14e0069431c950 100644 |
| --- a/ui/base/l10n/l10n_util.h |
| +++ b/ui/base/l10n/l10n_util.h |
| @@ -21,6 +21,12 @@ |
| namespace l10n_util { |
| +#if !defined(OS_MACOSX) |
|
Dmitry Polukhin
2013/09/06 20:30:05
I don't like platform specific functions in very c
Alexander Alekseev
2013/09/11 18:53:02
Done.
|
| +// This method translates generic locale name to one of locally defined ones. |
| +// Returns true if succeeded. |
| +UI_EXPORT bool CheckAndResolveLocale(const std::string& locale, |
| + std::string* resolved_locale); |
| +#endif |
| // This method is responsible for determining the locale as defined below. In |
| // nearly all cases you shouldn't call this, rather use GetApplicationLocale |
| // defined on browser_process. |