| 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 // This file is for i18n. It contains two enums, namely Language and | 5 // This file is for i18n. It contains two enums, namely Language and |
| 6 // Encoding, where Language is the linguistic convention, and Encoding | 6 // Encoding, where Language is the linguistic convention, and Encoding |
| 7 // contains information on both language encoding and character set. | 7 // contains information on both language encoding and character set. |
| 8 // | 8 // |
| 9 // The language and encoding are both based on Teragram's conventions, | 9 // The language and encoding are both based on Teragram's conventions, |
| 10 // except for some common ISO-8859 encodings that are not detected by | 10 // except for some common ISO-8859 encodings that are not detected by |
| 11 // Teragram but might be in the future. | 11 // Teragram but might be in the future. |
| (...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 245 // | 245 // |
| 246 // Ensures the LangEnc module has been initialized. Normally this | 246 // Ensures the LangEnc module has been initialized. Normally this |
| 247 // happens during InitGoogle, but this allows access for scripts that | 247 // happens during InitGoogle, but this allows access for scripts that |
| 248 // don't support InitGoogle. InitLangEnc calls InitEncodings (see | 248 // don't support InitGoogle. InitLangEnc calls InitEncodings (see |
| 249 // i18n/encodings/public/encodings.h) and also initializes data | 249 // i18n/encodings/public/encodings.h) and also initializes data |
| 250 // structures used in lang_enc.cc. | 250 // structures used in lang_enc.cc. |
| 251 // | 251 // |
| 252 void InitLangEnc(); | 252 void InitLangEnc(); |
| 253 | 253 |
| 254 #endif // ENCODINGS_LANG_ENC_H__ | 254 #endif // ENCODINGS_LANG_ENC_H__ |
| OLD | NEW |