Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(62)

Unified Diff: ppapi/c/ppb_var_array_buffer.h

Issue 9107046: PPAPI: Move PPB_ArrayBuffer out of Dev. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: minor fixes Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/c/dev/ppb_var_array_buffer_dev.h ('k') | ppapi/cpp/dev/var_array_buffer_dev.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 83%
rename from ppapi/c/dev/ppb_var_array_buffer_dev.h
rename to ppapi/c/ppb_var_array_buffer.h
index 272c8e25ca622bf3e0ba613e4c3cd0bec7730e90..c9c285ff115413033ff9bd9199b8b3bf7da54dff 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 Thu Jan 26 11:25:54 2012. */
+/* From ppb_var_array_buffer.idl modified Thu Jan 26 14:50:50 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_2 "PPB_VarArrayBuffer(Dev);0.2"
-#define PPB_VAR_ARRAY_BUFFER_DEV_INTERFACE \
- PPB_VAR_ARRAY_BUFFER_DEV_INTERFACE_0_2
+#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_2 {
+struct PPB_VarArrayBuffer_1_0 {
/**
* Create a zero-initialized VarArrayBuffer.
*
@@ -94,10 +93,10 @@ struct PPB_VarArrayBuffer_Dev_0_2 {
void (*Unmap)(struct PP_Var array);
};
-typedef struct PPB_VarArrayBuffer_Dev_0_2 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_ */
« no previous file with comments | « ppapi/c/dev/ppb_var_array_buffer_dev.h ('k') | ppapi/cpp/dev/var_array_buffer_dev.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698