| 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 ENCODINGS_PROTO_ENCODINGS_PB_H_ | 5 #ifndef ENCODINGS_PROTO_ENCODINGS_PB_H_ |
| 6 #define ENCODINGS_PROTO_ENCODINGS_PB_H_ | 6 #define ENCODINGS_PROTO_ENCODINGS_PB_H_ |
| 7 | 7 |
| 8 enum Encoding { | 8 enum Encoding { |
| 9 ISO_8859_1 = 0, // Teragram ASCII | 9 ISO_8859_1 = 0, // Teragram ASCII |
| 10 ISO_8859_2 = 1, // Teragram Latin2 | 10 ISO_8859_2 = 1, // Teragram Latin2 |
| 11 ISO_8859_3 = 2, // in BasisTech but not in Teragram | 11 ISO_8859_3 = 2, // in BasisTech but not in Teragram |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 KDDI_ISO_2022_JP = 73, | 160 KDDI_ISO_2022_JP = 73, |
| 161 SOFTBANK_ISO_2022_JP = 74, | 161 SOFTBANK_ISO_2022_JP = 74, |
| 162 //----------------------------------------------------------- | 162 //----------------------------------------------------------- |
| 163 | 163 |
| 164 NUM_ENCODINGS = 75, // Always keep this at the end. It is not a | 164 NUM_ENCODINGS = 75, // Always keep this at the end. It is not a |
| 165 // valid Encoding enum, it is only used to | 165 // valid Encoding enum, it is only used to |
| 166 // indicate the total number of Encodings. | 166 // indicate the total number of Encodings. |
| 167 }; | 167 }; |
| 168 | 168 |
| 169 #endif // ENCODINGS_PROTO_ENCODINGS_PB_H_ | 169 #endif // ENCODINGS_PROTO_ENCODINGS_PB_H_ |
| OLD | NEW |