| 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 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 Loading... |
| 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 }; |
| OLD | NEW |