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 /* PPAPI Structure */ | 8 /* PPAPI Structure */ |
9 struct PP_Size { | 9 struct PP_Size { |
10 /* This value represents the width of the rectangle. */ | 10 /* This value represents the width of the rectangle. */ |
11 int32_t width; | 11 int32_t width; |
12 /* This value represents the height of the rectangle. */ | 12 /* This value represents the height of the rectangle. */ |
13 int32_t height; | 13 int32_t height; |
14 }; | 14 }; |
15 | 15 |
16 /* PPAPI Enum */ | 16 /* PPAPI Enum */ |
17 enum PP_Bool { | 17 enum PP_Bool { |
| 18 /* Decalare False */ |
18 PP_FALSE = 0, | 19 PP_FALSE = 0, |
| 20 /* Decalare True */ |
19 PP_TRUE = 1 | 21 PP_TRUE = 1 |
20 }; | 22 }; |
OLD | NEW |