Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(392)

Side by Side Diff: ui/base/l10n/l10n_util.cc

Issue 7714028: Switch to using .pak files for locale data on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more deps Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome_frame/chrome_frame.gyp ('k') | ui/base/l10n/l10n_util_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ui/base/l10n/l10n_util.h" 5 #include "ui/base/l10n/l10n_util.h"
6 6
7 #if defined(TOOLKIT_USES_GTK) 7 #if defined(TOOLKIT_USES_GTK)
8 #include <glib/gutils.h> 8 #include <glib/gutils.h>
9 #endif 9 #endif
10 10
(...skipping 18 matching lines...) Expand all
29 #include "ui/base/ui_base_paths.h" 29 #include "ui/base/ui_base_paths.h"
30 #include "unicode/rbbi.h" 30 #include "unicode/rbbi.h"
31 #include "unicode/uloc.h" 31 #include "unicode/uloc.h"
32 32
33 #if defined(OS_WIN) 33 #if defined(OS_WIN)
34 #include "ui/base/l10n/l10n_util_win.h" 34 #include "ui/base/l10n/l10n_util_win.h"
35 #endif // OS_WIN 35 #endif // OS_WIN
36 36
37 namespace { 37 namespace {
38 38
39 #if defined(OS_WIN) 39 static const FilePath::CharType kLocaleFileExtension[] =
40 static const FilePath::CharType kLocaleFileExtension[] = L".dll"; 40 FILE_PATH_LITERAL(".pak");
41 #elif defined(OS_POSIX)
42 static const FilePath::CharType kLocaleFileExtension[] = ".pak";
43 #endif
44 41
45 static const char* const kAcceptLanguageList[] = { 42 static const char* const kAcceptLanguageList[] = {
46 "af", // Afrikaans 43 "af", // Afrikaans
47 "am", // Amharic 44 "am", // Amharic
48 "ar", // Arabic 45 "ar", // Arabic
49 "az", // Azerbaijani 46 "az", // Azerbaijani
50 "be", // Belarusian 47 "be", // Belarusian
51 "bg", // Bulgarian 48 "bg", // Bulgarian
52 "bh", // Bihari 49 "bh", // Bihari
53 "bn", // Bengali 50 "bn", // Bengali
(...skipping 757 matching lines...) Expand 10 before | Expand all | Expand 10 after
811 for (size_t i = 0; i < arraysize(kAcceptLanguageList); ++i) { 808 for (size_t i = 0; i < arraysize(kAcceptLanguageList); ++i) {
812 if (!IsLocaleNameTranslated(kAcceptLanguageList[i], display_locale)) 809 if (!IsLocaleNameTranslated(kAcceptLanguageList[i], display_locale))
813 // TODO(jungshik) : Put them at the of the list with language codes 810 // TODO(jungshik) : Put them at the of the list with language codes
814 // enclosed by brackets instead of skipping. 811 // enclosed by brackets instead of skipping.
815 continue; 812 continue;
816 locale_codes->push_back(kAcceptLanguageList[i]); 813 locale_codes->push_back(kAcceptLanguageList[i]);
817 } 814 }
818 } 815 }
819 816
820 } // namespace l10n_util 817 } // namespace l10n_util
OLDNEW
« no previous file with comments | « chrome_frame/chrome_frame.gyp ('k') | ui/base/l10n/l10n_util_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698