| Index: ppapi/c/private/ppb_instance_private.h
|
| diff --git a/ppapi/c/private/ppb_instance_private.h b/ppapi/c/private/ppb_instance_private.h
|
| index 730d909a88dc6a70952ce0be8c46e9bac1e56b04..119ea893c75ec849d32bf3735fe4ed585176bd92 100644
|
| --- a/ppapi/c/private/ppb_instance_private.h
|
| +++ b/ppapi/c/private/ppb_instance_private.h
|
| @@ -8,7 +8,8 @@
|
| #include "ppapi/c/pp_instance.h"
|
| #include "ppapi/c/pp_var.h"
|
|
|
| -#define PPB_INSTANCE_PRIVATE_INTERFACE "PPB_Instance_Private;0.1"
|
| +#define PPB_INSTANCE_PRIVATE_INTERFACE_0_1 "PPB_Instance_Private;0.1"
|
| +#define PPB_INSTANCE_PRIVATE_INTERFACE PPB_INSTANCE_PRIVATE_INTERFACE_0_1
|
|
|
| /**
|
| * @file
|
| @@ -25,7 +26,7 @@
|
| * trusted plugin instances.
|
| *
|
| */
|
| -struct PPB_Instance_Private {
|
| +struct PPB_Instance_Private_0_1 {
|
| /**
|
| * GetWindowObject is a pointer to a function that determines
|
| * the DOM window containing this module instance.
|
| @@ -66,9 +67,10 @@ struct PPB_Instance_Private {
|
| struct PP_Var script,
|
| struct PP_Var* exception);
|
| };
|
| +
|
| +typedef struct PPB_Instance_Private_0_1 PPB_Instance_Private;
|
| /**
|
| * @}
|
| */
|
|
|
| #endif /* PPAPI_C_PRIVATE_PPB_INSTANCE_PRIVATE_H_ */
|
| -
|
|
|