OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 WEBKIT_GLUE_PLUGINS_PEPPER_VAR_H_ | 5 #ifndef WEBKIT_GLUE_PLUGINS_PEPPER_VAR_H_ |
6 #define WEBKIT_GLUE_PLUGINS_PEPPER_VAR_H_ | 6 #define WEBKIT_GLUE_PLUGINS_PEPPER_VAR_H_ |
7 | 7 |
8 typedef struct _pp_Var PP_Var; | 8 typedef struct _pp_Var PP_Var; |
9 typedef struct _ppb_Var PPB_Var; | 9 typedef struct _ppb_Var PPB_Var; |
10 typedef struct NPObject NPObject; | 10 typedef struct NPObject NPObject; |
11 typedef struct _NPVariant NPVariant; | 11 typedef struct _NPVariant NPVariant; |
12 typedef void* NPIdentifier; | 12 typedef void* NPIdentifier; |
13 | 13 |
14 namespace pepper { | 14 namespace pepper { |
15 | 15 |
16 // There's no class implementing Var since it could represent a number of | 16 // There's no class implementing Var since it could represent a number of |
17 // objects. Instead, we just expose a getter for the interface implemented in | 17 // objects. Instead, we just expose a getter for the interface implemented in |
18 // the .cc file here. | 18 // the .cc file here. |
19 const PPB_Var* GetVarInterface(); | 19 const PPB_Var* GetVarInterface(); |
20 | 20 |
21 // Returns a PP_Var of type object that wraps the given NPObject. Calling this | 21 // Returns a PP_Var of type object that wraps the given NPObject. Calling this |
22 // function multiple times given the same NPObject results in the same PP_Var. | 22 // function multiple times given the same NPObject results in the same PP_Var. |
23 PP_Var NPObjectToPPVar(NPObject* object); | 23 PP_Var NPObjectToPPVar(NPObject* object); |
24 | 24 |
25 // Returns a PP_Var that corresponds to the given NPVariant. The contents of | |
26 // the NPVariant will be copied unless the NPVariant corresponds to an object. | |
27 PP_Var NPVariantToPPVar(NPVariant* variant); | |
28 | |
29 // Returns a NPVariant that corresponds to the given PP_Var. The contents of | |
30 // the PP_Var will be copied unless the PP_Var corresponds to an object. | |
31 NPVariant PPVarToNPVariant(PP_Var var); | |
32 | |
33 // Returns a NPVariant that corresponds to the given PP_Var. The contents of | |
34 // the PP_Var will NOT be copied, so you need to ensure that the PP_Var remains | |
35 // valid while the resultant NPVariant is in use. | |
36 NPVariant PPVarToNPVariantNoCopy(PP_Var var); | |
37 | |
38 // Returns a NPIdentifier that corresponds to the given PP_Var. The contents | |
39 // of the PP_Var will be copied. Returns NULL if the given PP_Var is not a a | |
40 // string or integer type. | |
41 NPIdentifier PPVarToNPIdentifier(PP_Var var); | |
42 | |
43 } // namespace pepper | 25 } // namespace pepper |
44 | 26 |
45 #endif // WEBKIT_GLUE_PLUGINS_PEPPER_VAR_H_ | 27 #endif // WEBKIT_GLUE_PLUGINS_PEPPER_VAR_H_ |
OLD | NEW |