| OLD | NEW |
| 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 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_LANGUAGE_LIST_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_LANGUAGE_LIST_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_LANGUAGE_LIST_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_LANGUAGE_LIST_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
| 13 #include "base/string16.h" | 13 #include "base/strings/string16.h" |
| 14 | 14 |
| 15 namespace chromeos { | 15 namespace chromeos { |
| 16 | 16 |
| 17 // LanguageList is used to enumerate native names corresponding to the | 17 // LanguageList is used to enumerate native names corresponding to the |
| 18 // language code (e.g. English (United States) for en-US). | 18 // language code (e.g. English (United States) for en-US). |
| 19 class LanguageList { | 19 class LanguageList { |
| 20 public: | 20 public: |
| 21 LanguageList(); | 21 LanguageList(); |
| 22 ~LanguageList(); | 22 ~LanguageList(); |
| 23 | 23 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 | 56 |
| 57 // A map of some extra data (LocaleData) keyed off the name of the locale. | 57 // A map of some extra data (LocaleData) keyed off the name of the locale. |
| 58 LocaleDataMap native_names_; | 58 LocaleDataMap native_names_; |
| 59 | 59 |
| 60 DISALLOW_COPY_AND_ASSIGN(LanguageList); | 60 DISALLOW_COPY_AND_ASSIGN(LanguageList); |
| 61 }; | 61 }; |
| 62 | 62 |
| 63 } // namespace chromeos | 63 } // namespace chromeos |
| 64 | 64 |
| 65 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_LANGUAGE_LIST_H_ | 65 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_LANGUAGE_LIST_H_ |
| OLD | NEW |