| 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 | 5 |
| 6 /** | 6 /** |
| 7 * This file provides a definition of C99 sized types | 7 * This file provides a definition of C99 sized types |
| 8 * for Microsoft compilers. These definitions only apply | 8 * for Microsoft compilers. These definitions only apply |
| 9 * for trusted modules. | 9 * for trusted modules. |
| 10 */ | 10 */ |
| 11 | 11 |
| 12 label Chrome { | 12 label Chrome { |
| 13 M13 = 0.0, | 13 M13 = 0.0 |
| 14 M14 = 1.0 | |
| 15 }; | 14 }; |
| 16 | 15 |
| 17 [version=0.0] | 16 [version=0.0] |
| 18 describe { | 17 describe { |
| 19 /** Standard Ints. */ | 18 /** Standard Ints. */ |
| 20 int8_t; | 19 int8_t; |
| 21 int16_t; | 20 int16_t; |
| 22 int32_t; | 21 int32_t; |
| 23 int64_t; | 22 int64_t; |
| 24 uint8_t; | 23 uint8_t; |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 | 82 |
| 84 #else | 83 #else |
| 85 #include <stdint.h> | 84 #include <stdint.h> |
| 86 #endif | 85 #endif |
| 87 /** | 86 /** |
| 88 * @} | 87 * @} |
| 89 */ | 88 */ |
| 90 | 89 |
| 91 #endinl | 90 #endinl |
| 92 | 91 |
| OLD | NEW |