| OLD | NEW |
| 1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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 /** | 6 /** |
| 7 * This file defines the API to create a 2 dimensional point. | 7 * This file defines the API to create a 2 dimensional point. |
| 8 * 0,0 is the upper-left starting coordinate. | 8 * 0,0 is the upper-left starting coordinate. |
| 9 */ | 9 */ |
| 10 | 10 |
| 11 /** | 11 /** |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 ret.x = x; | 65 ret.x = x; |
| 66 ret.y = y; | 66 ret.y = y; |
| 67 return ret; | 67 return ret; |
| 68 } | 68 } |
| 69 /** | 69 /** |
| 70 * @} | 70 * @} |
| 71 */ | 71 */ |
| 72 | 72 |
| 73 #endinl | 73 #endinl |
| 74 | 74 |
| OLD | NEW |