OLD | NEW |
(Empty) | |
| 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 |
| 3 * found in the LICENSE file. |
| 4 */ |
| 5 |
| 6 /* File Comment. */ |
| 7 |
| 8 label Chrome { |
| 9 M13 = 0.0, |
| 10 M14 = 1.0, |
| 11 M15 = 2.0 |
| 12 }; |
| 13 |
| 14 [version=0.0] |
| 15 describe { |
| 16 /** Standard Ints. */ |
| 17 int32_t; |
| 18 }; |
| 19 |
| 20 |
| 21 /* Bogus Struct */ |
| 22 [version=0.0] |
| 23 struct PP_Size { |
| 24 /** |
| 25 * Comment for function |
| 26 */ |
| 27 [version=0.0] int32_t Foo(int32_t x); |
| 28 /** |
| 29 * Comment for function |
| 30 */ |
| 31 [version=1.0] int32_t Foo(int32_t x, int32_t y); |
| 32 /** |
| 33 * Comment for function |
| 34 */ |
| 35 [version=2.0] int32_t Foo(int32_t x, int32_t y, int32_t z); |
| 36 }; |
OLD | NEW |