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 <code>PPB_VarArrayBuffer_Dev</code> struct. | 7 * This file defines the <code>PPB_VarArrayBuffer_Dev</code> struct. |
8 */ | 8 */ |
9 | 9 |
10 label Chrome { | 10 label Chrome { |
11 M17 = 0.1 | 11 M17 = 0.1 |
(...skipping 26 matching lines...) Expand all Loading... |
38 /** | 38 /** |
39 * Returns a pointer to the beginning of the buffer for the given array. | 39 * Returns a pointer to the beginning of the buffer for the given array. |
40 * | 40 * |
41 * @param[in] array The array whose buffer should be returned. | 41 * @param[in] array The array whose buffer should be returned. |
42 * | 42 * |
43 * @return A pointer to the buffer for this array. | 43 * @return A pointer to the buffer for this array. |
44 */ | 44 */ |
45 mem_t Map([in] PP_Var array); | 45 mem_t Map([in] PP_Var array); |
46 }; | 46 }; |
47 | 47 |
OLD | NEW |