OLD | NEW |
1 /* Copyright (c) 2012 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_View</code> struct representing the state | 7 * This file defines the <code>PPB_View</code> struct representing the state |
8 * of the view of an instance. | 8 * of the view of an instance. |
9 */ | 9 */ |
10 | 10 |
| 11 [generate_thunk] |
| 12 |
11 label Chrome { | 13 label Chrome { |
12 M18 = 1.0 | 14 M18 = 1.0 |
13 }; | 15 }; |
14 | 16 |
15 /** | 17 /** |
16 * <code>PPB_View</code> represents the state of the view of an instance. | 18 * <code>PPB_View</code> represents the state of the view of an instance. |
17 * You will receive new view information using | 19 * You will receive new view information using |
18 * <code>PPP_Instance.DidChangeView</code>. | 20 * <code>PPP_Instance.DidChangeView</code>. |
19 */ | 21 */ |
20 [macro="PPB_VIEW_INTERFACE"] | 22 [macro="PPB_VIEW_INTERFACE"] |
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
152 * | 154 * |
153 * @param clip Output argument receiving the clip rect on success. | 155 * @param clip Output argument receiving the clip rect on success. |
154 * | 156 * |
155 * @return Returns <code>PP_TRUE</code> if the resource was valid and the | 157 * @return Returns <code>PP_TRUE</code> if the resource was valid and the |
156 * clip rect was filled in, <code>PP_FALSE</code> if not. | 158 * clip rect was filled in, <code>PP_FALSE</code> if not. |
157 */ | 159 */ |
158 PP_Bool GetClipRect([in] PP_Resource resource, | 160 PP_Bool GetClipRect([in] PP_Resource resource, |
159 [out] PP_Rect clip); | 161 [out] PP_Rect clip); |
160 }; | 162 }; |
161 | 163 |
OLD | NEW |