OLD | NEW |
---|---|
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. |
brettw
2012/04/11 21:22:34
I had to fix the line endings in this file to make
| |
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_MouseCursor</code> interface for setting | 7 * This file defines the <code>PPB_MouseCursor</code> interface for setting |
8 * the mouse cursor. | 8 * the mouse cursor. |
9 */ | 9 */ |
10 | 10 |
11 label Chrome { | 11 label Chrome { |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
97 * When specifying a stock cursor, this parameter is ignored. | 97 * When specifying a stock cursor, this parameter is ignored. |
98 * | 98 * |
99 * @return PP_TRUE on success, or PP_FALSE if the instance or cursor type | 99 * @return PP_TRUE on success, or PP_FALSE if the instance or cursor type |
100 * is invalid, or if the image is too large. | 100 * is invalid, or if the image is too large. |
101 */ | 101 */ |
102 PP_Bool SetCursor([in] PP_Instance instance, | 102 PP_Bool SetCursor([in] PP_Instance instance, |
103 [in] PP_MouseCursor_Type type, | 103 [in] PP_MouseCursor_Type type, |
104 [in] PP_Resource image, | 104 [in] PP_Resource image, |
105 [in] PP_Point hot_spot); | 105 [in] PP_Point hot_spot); |
106 }; | 106 }; |
OLD | NEW |