| Index: ppapi/c/ppb_var_array_buffer.h
|
| diff --git a/ppapi/c/dev/ppb_var_array_buffer_dev.h b/ppapi/c/ppb_var_array_buffer.h
|
| similarity index 69%
|
| rename from ppapi/c/dev/ppb_var_array_buffer_dev.h
|
| rename to ppapi/c/ppb_var_array_buffer.h
|
| index e4daf90ba6a24bf5c781292a0c967a02ebe87967..9f5caa210dbd24103eac19bf756dca24152857c4 100644
|
| --- a/ppapi/c/dev/ppb_var_array_buffer_dev.h
|
| +++ b/ppapi/c/ppb_var_array_buffer.h
|
| @@ -3,23 +3,22 @@
|
| * found in the LICENSE file.
|
| */
|
|
|
| -/* From dev/ppb_var_array_buffer_dev.idl modified Wed Dec 14 18:08:00 2011. */
|
| +/* From ppb_var_array_buffer.idl modified Thu Jan 12 11:42:12 2012. */
|
|
|
| -#ifndef PPAPI_C_DEV_PPB_VAR_ARRAY_BUFFER_DEV_H_
|
| -#define PPAPI_C_DEV_PPB_VAR_ARRAY_BUFFER_DEV_H_
|
| +#ifndef PPAPI_C_PPB_VAR_ARRAY_BUFFER_H_
|
| +#define PPAPI_C_PPB_VAR_ARRAY_BUFFER_H_
|
|
|
| #include "ppapi/c/pp_bool.h"
|
| #include "ppapi/c/pp_macros.h"
|
| #include "ppapi/c/pp_stdint.h"
|
| #include "ppapi/c/pp_var.h"
|
|
|
| -#define PPB_VAR_ARRAY_BUFFER_DEV_INTERFACE_0_1 "PPB_VarArrayBuffer(Dev);0.1"
|
| -#define PPB_VAR_ARRAY_BUFFER_DEV_INTERFACE \
|
| - PPB_VAR_ARRAY_BUFFER_DEV_INTERFACE_0_1
|
| +#define PPB_VAR_ARRAY_BUFFER_INTERFACE_1_0 "PPB_VarArrayBuffer;1.0"
|
| +#define PPB_VAR_ARRAY_BUFFER_INTERFACE PPB_VAR_ARRAY_BUFFER_INTERFACE_1_0
|
|
|
| /**
|
| * @file
|
| - * This file defines the <code>PPB_VarArrayBuffer_Dev</code> struct.
|
| + * This file defines the <code>PPB_VarArrayBuffer</code> struct.
|
| */
|
|
|
|
|
| @@ -28,13 +27,13 @@
|
| * @{
|
| */
|
| /**
|
| - * PPB_VarArrayBuffer_Dev API. This provides a way to interact with JavaScript
|
| + * PPB_VarArrayBuffer API. This provides a way to interact with JavaScript
|
| * ArrayBuffers, which represent a contiguous sequence of bytes. To manage the
|
| * reference count for a VarArrayBuffer, please see PPB_Var. Note that
|
| * these Vars are not part of the embedding page's DOM, and can only be shared
|
| * with JavaScript via pp::Instance's PostMessage and HandleMessage functions.
|
| */
|
| -struct PPB_VarArrayBuffer_Dev_0_1 {
|
| +struct PPB_VarArrayBuffer_1_0 {
|
| /**
|
| * Create a zero-initialized VarArrayBuffer.
|
| *
|
| @@ -60,10 +59,10 @@ struct PPB_VarArrayBuffer_Dev_0_1 {
|
| void* (*Map)(struct PP_Var array);
|
| };
|
|
|
| -typedef struct PPB_VarArrayBuffer_Dev_0_1 PPB_VarArrayBuffer_Dev;
|
| +typedef struct PPB_VarArrayBuffer_1_0 PPB_VarArrayBuffer;
|
| /**
|
| * @}
|
| */
|
|
|
| -#endif /* PPAPI_C_DEV_PPB_VAR_ARRAY_BUFFER_DEV_H_ */
|
| +#endif /* PPAPI_C_PPB_VAR_ARRAY_BUFFER_H_ */
|
|
|
|
|