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

Side by Side Diff: chrome/browser/chromeos/login/language_list.cc

Issue 1547093002: Switch to standard integer types in chrome/browser/chromeos/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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
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 "chrome/browser/chromeos/login/language_list.h" 5 #include "chrome/browser/chromeos/login/language_list.h"
6 6
7 #include <stddef.h>
8
7 #include "base/i18n/rtl.h" 9 #include "base/i18n/rtl.h"
8 #include "base/strings/string_split.h" 10 #include "base/strings/string_split.h"
9 #include "base/strings/stringprintf.h" 11 #include "base/strings/stringprintf.h"
10 #include "base/strings/utf_string_conversions.h" 12 #include "base/strings/utf_string_conversions.h"
11 #include "chrome/browser/browser_process.h" 13 #include "chrome/browser/browser_process.h"
12 #include "ui/base/l10n/l10n_util.h" 14 #include "ui/base/l10n/l10n_util.h"
13 15
14 namespace chromeos { 16 namespace chromeos {
15 17
16 LanguageList::LanguageList() { 18 LanguageList::LanguageList() {
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 native_names_[name_in_current_ui] = 106 native_names_[name_in_current_ui] =
105 LocaleData(name_native, locale_codes[i]); 107 LocaleData(name_native, locale_codes[i]);
106 } 108 }
107 109
108 // Sort using locale specific sorter. 110 // Sort using locale specific sorter.
109 l10n_util::SortStrings16(g_browser_process->GetApplicationLocale(), 111 l10n_util::SortStrings16(g_browser_process->GetApplicationLocale(),
110 &locale_names_); 112 &locale_names_);
111 } 113 }
112 114
113 } // namespace chromeos 115 } // namespace chromeos
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/language_list.h ('k') | chrome/browser/chromeos/login/lock/screen_locker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698