OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #ifndef PPAPI_CPP_PRIVATE_INSTANCE_PRIVATE_H_ | 5 #ifndef PPAPI_CPP_PRIVATE_INSTANCE_PRIVATE_H_ |
6 #define PPAPI_CPP_PRIVATE_INSTANCE_PRIVATE_H_ | 6 #define PPAPI_CPP_PRIVATE_INSTANCE_PRIVATE_H_ |
7 | 7 |
8 /** | 8 /** |
9 * @file | 9 * @file |
10 * Defines the API ... | 10 * Defines the API ... |
(...skipping 27 matching lines...) Expand all Loading... |
38 // @{ | 38 // @{ |
39 /// @name PPB_Instance_Private methods for querying the browser: | 39 /// @name PPB_Instance_Private methods for querying the browser: |
40 | 40 |
41 /// See PPB_Instance_Private.GetWindowObject. | 41 /// See PPB_Instance_Private.GetWindowObject. |
42 VarPrivate GetWindowObject(); | 42 VarPrivate GetWindowObject(); |
43 | 43 |
44 /// See PPB_Instance_Private.GetOwnerElementObject. | 44 /// See PPB_Instance_Private.GetOwnerElementObject. |
45 VarPrivate GetOwnerElementObject(); | 45 VarPrivate GetOwnerElementObject(); |
46 | 46 |
47 /// See PPB_Instance.ExecuteScript. | 47 /// See PPB_Instance.ExecuteScript. |
48 VarPrivate ExecuteScript(const Var& script, VarPrivate* exception = NULL); | 48 VarPrivate ExecuteScript(const Var& script, Var* exception = NULL); |
49 | 49 |
50 // @} | 50 // @} |
51 }; | 51 }; |
52 | 52 |
53 } // namespace pp | 53 } // namespace pp |
54 | 54 |
55 /** | 55 /** |
56 * @} | 56 * @} |
57 * End addtogroup CPP | 57 * End addtogroup CPP |
58 */ | 58 */ |
59 #endif // PPAPI_CPP_PRIVATE_INSTANCE_PRIVATE_H_ | 59 #endif // PPAPI_CPP_PRIVATE_INSTANCE_PRIVATE_H_ |
OLD | NEW |