Chromium Code Reviews| Index: ppapi/c/private/ppp_instance_private.h |
| diff --git a/ppapi/c/private/ppp_instance_private.h b/ppapi/c/private/ppp_instance_private.h |
| index e587d26e3f6cb5b53ae3736a6f42426b67cb7d3f..aa439a017206aa6681749dff93e0f122f0e55428 100644 |
| --- a/ppapi/c/private/ppp_instance_private.h |
| +++ b/ppapi/c/private/ppp_instance_private.h |
| @@ -1,35 +1,40 @@ |
| -/* Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| +/* Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| * Use of this source code is governed by a BSD-style license that can be |
| * found in the LICENSE file. |
| */ |
| + |
| +/* From private/ppp_instance_private.idl modified Tue Oct 2 13:42:46 2012. */ |
| + |
| #ifndef PPAPI_C_PRIVATE_PPP_INSTANCE_PRIVATE_H_ |
| #define PPAPI_C_PRIVATE_PPP_INSTANCE_PRIVATE_H_ |
| +#include "ppapi/c/pp_bool.h" |
| #include "ppapi/c/pp_instance.h" |
| +#include "ppapi/c/pp_macros.h" |
| +#include "ppapi/c/pp_stdint.h" |
| +#include "ppapi/c/pp_var.h" |
| -struct PP_Var; |
| - |
| -#define PPP_INSTANCE_PRIVATE_INTERFACE "PPP_Instance_Private;0.1" |
| +#define PPP_INSTANCE_PRIVATE_INTERFACE_0_1 "PPP_Instance_Private;0.1" |
| +#define PPP_INSTANCE_PRIVATE_INTERFACE PPP_INSTANCE_PRIVATE_INTERFACE_0_1 |
| /** |
| * @file |
| * This file defines the PPP_InstancePrivate structure; a series of functions |
| * that a trusted plugin may implement to provide capabilities only available |
| * to trusted plugins. |
| - * |
| */ |
| -/** @addtogroup Interfaces |
| + |
| +/** |
| + * @addtogroup Interfaces |
| * @{ |
| */ |
| - |
| /** |
| * The PPP_Instance_Private interface contains pointers to a series of |
| * functions that may be implemented in a trusted plugin to provide capabilities |
| * that aren't possible in untrusted modules. |
| */ |
| - |
| -struct PPP_Instance_Private { |
| +struct PPP_Instance_Private_0_1 { |
| /** |
| * GetInstanceObject returns a PP_Var representing the scriptable object for |
| * the given instance. Normally this will be a PPP_Class_Deprecated object |
| @@ -46,6 +51,8 @@ struct PPP_Instance_Private { |
| */ |
| struct PP_Var (*GetInstanceObject)(PP_Instance instance); |
| }; |
| + |
| +typedef struct PPP_Instance_Private_0_1 PPP_Instance_Private; |
|
yzshen1
2012/10/02 21:14:43
With this change, ppp_instance_private_proxy.h won
|
| /** |
| * @} |
| */ |