Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(74)

Side by Side Diff: ppapi/api/ppb_view.idl

Issue 12220082: IDL: Autogenerate thunk .cc file for PPB_View (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ppapi/api/dev/ppb_view_dev.idl ('k') | ppapi/generators/idl_thunk.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « ppapi/api/dev/ppb_view_dev.idl ('k') | ppapi/generators/idl_thunk.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698