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

Side by Side Diff: ppapi/api/private/ppb_instance_private.idl

Issue 11235016: Change the way we generate versions (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 2 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 | Annotate | Revision Log
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 PPB_Instance_Private interface implemented by the 7 * This file defines the PPB_Instance_Private interface implemented by the
8 * browser and containing pointers to functions available only to trusted plugin 8 * browser and containing pointers to functions available only to trusted plugin
9 * instances. 9 * instances.
10 */ 10 */
11 11
12 label Chrome { 12 label Chrome {
13 M13 = 0.1 13 M14 = 0.1
14 }; 14 };
15 15
16 /** 16 /**
17 * The PPB_Instance_Private interface contains functions available only to 17 * The PPB_Instance_Private interface contains functions available only to
18 * trusted plugin instances. 18 * trusted plugin instances.
19 * 19 *
20 */ 20 */
21 interface PPB_Instance_Private { 21 interface PPB_Instance_Private {
22 /** 22 /**
23 * GetWindowObject is a pointer to a function that determines 23 * GetWindowObject is a pointer to a function that determines
(...skipping 28 matching lines...) Expand all
52 * this to NULL if you don't want exception info; initialize this to a void 52 * this to NULL if you don't want exception info; initialize this to a void
53 * exception if want exception info. 53 * exception if want exception info.
54 * 54 *
55 * @return The result of the script execution, or a "void" var 55 * @return The result of the script execution, or a "void" var
56 * if execution failed. 56 * if execution failed.
57 */ 57 */
58 PP_Var ExecuteScript([in] PP_Instance instance, 58 PP_Var ExecuteScript([in] PP_Instance instance,
59 [in] PP_Var script, 59 [in] PP_Var script,
60 [out] PP_Var exception); 60 [out] PP_Var exception);
61 }; 61 };
OLDNEW
« no previous file with comments | « no previous file | ppapi/api/private/ppb_net_address_private.idl » ('j') | ppapi/generators/idl_ast.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698