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

Unified Diff: ppapi/c/ppb_file_system.h

Issue 8989006: Update PPAPI IDL generator to define versioned structs, and unversioned typedef. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix ppapi/tests/ forward declares to includes. Created 9 years 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
Index: ppapi/c/ppb_file_system.h
diff --git a/ppapi/c/ppb_file_system.h b/ppapi/c/ppb_file_system.h
index 82beea38e209c773d6a0c13591515e40bdf69384..282b299fefd242b2b2dcc66557176117ac3534ab 100644
--- a/ppapi/c/ppb_file_system.h
+++ b/ppapi/c/ppb_file_system.h
@@ -3,7 +3,7 @@
* found in the LICENSE file.
*/
-/* From ppb_file_system.idl modified Mon Aug 29 10:11:34 2011. */
+/* From ppb_file_system.idl modified Wed Oct 5 14:06:02 2011. */
#ifndef PPAPI_C_PPB_FILE_SYSTEM_H_
#define PPAPI_C_PPB_FILE_SYSTEM_H_
@@ -33,7 +33,7 @@
* The <code>PPB_FileSystem</code> struct identifies the file system type
* associated with a file.
*/
-struct PPB_FileSystem {
+struct PPB_FileSystem_1_0 {
/** Create() creates a file system object of the given type.
*
* @param[in] instance A <code>PP_Instance</code> identifying the instance
@@ -87,6 +87,8 @@ struct PPB_FileSystem {
*/
PP_FileSystemType (*GetType)(PP_Resource file_system);
};
+
+typedef struct PPB_FileSystem_1_0 PPB_FileSystem;
/**
* @}
*/

Powered by Google App Engine
This is Rietveld 408576698