| 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 /* From pp_point.idl modified Wed Aug 10 14:06:40 2011. */ | 6 /* From pp_point.idl modified Wed Oct 5 14:06:02 2011. */ |
| 7 | 7 |
| 8 #ifndef PPAPI_C_PP_POINT_H_ | 8 #ifndef PPAPI_C_PP_POINT_H_ |
| 9 #define PPAPI_C_PP_POINT_H_ | 9 #define PPAPI_C_PP_POINT_H_ |
| 10 | 10 |
| 11 #include "ppapi/c/pp_macros.h" | 11 #include "ppapi/c/pp_macros.h" |
| 12 #include "ppapi/c/pp_stdint.h" | 12 #include "ppapi/c/pp_stdint.h" |
| 13 | 13 |
| 14 /** | 14 /** |
| 15 * @file | 15 * @file |
| 16 * This file defines the API to create a 2 dimensional point. | 16 * This file defines the API to create a 2 dimensional point. |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 ret.x = x; | 80 ret.x = x; |
| 81 ret.y = y; | 81 ret.y = y; |
| 82 return ret; | 82 return ret; |
| 83 } | 83 } |
| 84 /** | 84 /** |
| 85 * @} | 85 * @} |
| 86 */ | 86 */ |
| 87 | 87 |
| 88 #endif /* PPAPI_C_PP_POINT_H_ */ | 88 #endif /* PPAPI_C_PP_POINT_H_ */ |
| 89 | 89 |
| OLD | NEW |