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