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 /* File Comment. */ | 6 /* File Comment. */ |
7 | 7 |
8 label Chrome { | 8 label Chrome { |
9 M13 = 0.0, | 9 M13 = 0.0, |
10 M14 = 1.0, | 10 M14 = 1.0, |
11 M15 = 2.0, | 11 M15 = 2.0, |
12 M16 = 3.0, | 12 M16 = 3.0, |
13 M17 = 4.0 | 13 M17 = 4.0 |
14 }; | 14 }; |
15 | 15 |
16 describe { | |
17 int32_t; | |
18 }; | |
19 | |
20 /* Bogus Interface Foo */ | 16 /* Bogus Interface Foo */ |
21 [version=0.0] | 17 [version=0.0] |
22 interface Foo { | 18 interface Foo { |
23 /** | 19 /** |
24 * Comment for function x | 20 * Comment for function x |
25 */ | 21 */ |
26 [version=0.0] int32_t Bar(int32_t x); | 22 [version=0.0] int32_t Bar(int32_t x); |
27 /** | 23 /** |
28 * Comment for function x,y | 24 * Comment for function x,y |
29 */ | 25 */ |
30 [version=1.0] int32_t Bar(int32_t x, int32_t y); | 26 [version=1.0] int32_t Bar(int32_t x, int32_t y); |
31 /** | 27 /** |
32 * Comment for function x,y,z | 28 * Comment for function x,y,z |
33 */ | 29 */ |
34 [version=2.0] int32_t Bar(int32_t x, int32_t y, int32_t z); | 30 [version=2.0] int32_t Bar(int32_t x, int32_t y, int32_t z); |
35 }; | 31 }; |
36 | 32 |
OLD | NEW |