| Index: ui/base/l10n/l10n_util.cc
|
| ===================================================================
|
| --- ui/base/l10n/l10n_util.cc (revision 98424)
|
| +++ ui/base/l10n/l10n_util.cc (working copy)
|
| @@ -36,8 +36,11 @@
|
|
|
| namespace {
|
|
|
| -static const FilePath::CharType kLocaleFileExtension[] =
|
| - FILE_PATH_LITERAL(".pak");
|
| +#if defined(OS_WIN)
|
| +static const FilePath::CharType kLocaleFileExtension[] = L".dll";
|
| +#elif defined(OS_POSIX)
|
| +static const FilePath::CharType kLocaleFileExtension[] = ".pak";
|
| +#endif
|
|
|
| static const char* const kAcceptLanguageList[] = {
|
| "af", // Afrikaans
|
|
|