| OLD | NEW |
| 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 LANGUAGES_PROTO_LANGUAGES_PB_H_ | 5 #ifndef LANGUAGES_PROTO_LANGUAGES_PB_H_ |
| 6 #define LANGUAGES_PROTO_LANGUAGES_PB_H_ | 6 #define LANGUAGES_PROTO_LANGUAGES_PB_H_ |
| 7 | 7 |
| 8 enum Language { | 8 enum Language { |
| 9 ENGLISH = 0, | 9 ENGLISH = 0, |
| 10 DANISH = 1, | 10 DANISH = 1, |
| 11 DUTCH = 2, | 11 DUTCH = 2, |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 MANX = 159, // UI only. | 170 MANX = 159, // UI only. |
| 171 MONTENEGRIN = 160, // UI only. LangId language: SERBIAN (29) | 171 MONTENEGRIN = 160, // UI only. LangId language: SERBIAN (29) |
| 172 NUM_LANGUAGES = 161, // Always keep this at the end. It is not a | 172 NUM_LANGUAGES = 161, // Always keep this at the end. It is not a |
| 173 // valid Language enum. It is only used to | 173 // valid Language enum. It is only used to |
| 174 // indicate the total number of Languages. | 174 // indicate the total number of Languages. |
| 175 // NOTE: If you add a language, you will break a unittest. See the note | 175 // NOTE: If you add a language, you will break a unittest. See the note |
| 176 // at the top of this enum. | 176 // at the top of this enum. |
| 177 }; | 177 }; |
| 178 | 178 |
| 179 #endif // LANGUAGES_PROTO_LANGUAGES_PB_H_ | 179 #endif // LANGUAGES_PROTO_LANGUAGES_PB_H_ |
| OLD | NEW |