| Index: ppapi/c/pp_file_info.h
|
| diff --git a/ppapi/c/pp_file_info.h b/ppapi/c/pp_file_info.h
|
| index 8df6076227f12bfde5bd965713402abc3b8fe580..0b8353de9921ac54376e285638b855c654c25c5e 100644
|
| --- a/ppapi/c/pp_file_info.h
|
| +++ b/ppapi/c/pp_file_info.h
|
| @@ -3,7 +3,7 @@
|
| * found in the LICENSE file.
|
| */
|
|
|
| -/* From pp_file_info.idl modified Sat Jul 16 16:50:26 2011. */
|
| +/* From pp_file_info.idl modified Fri Nov 11 19:56:09 2011. */
|
|
|
| #ifndef PPAPI_C_PP_FILE_INFO_H_
|
| #define PPAPI_C_PP_FILE_INFO_H_
|
| @@ -27,11 +27,11 @@
|
| */
|
| typedef enum {
|
| /** A regular file type */
|
| - PP_FILETYPE_REGULAR,
|
| + PP_FILETYPE_REGULAR = 0,
|
| /** A directory */
|
| - PP_FILETYPE_DIRECTORY,
|
| + PP_FILETYPE_DIRECTORY = 1,
|
| /** A catch-all for unidentified types */
|
| - PP_FILETYPE_OTHER
|
| + PP_FILETYPE_OTHER = 2
|
| } PP_FileType;
|
| PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_FileType, 4);
|
|
|
| @@ -42,11 +42,11 @@ typedef enum {
|
| /** For identified invalid return values */
|
| PP_FILESYSTEMTYPE_INVALID = 0,
|
| /** For external file system types */
|
| - PP_FILESYSTEMTYPE_EXTERNAL,
|
| + PP_FILESYSTEMTYPE_EXTERNAL = 1,
|
| /** For local persistant file system types */
|
| - PP_FILESYSTEMTYPE_LOCALPERSISTENT,
|
| + PP_FILESYSTEMTYPE_LOCALPERSISTENT = 2,
|
| /** For local temporary file system types */
|
| - PP_FILESYSTEMTYPE_LOCALTEMPORARY
|
| + PP_FILESYSTEMTYPE_LOCALTEMPORARY = 3
|
| } PP_FileSystemType;
|
| PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_FileSystemType, 4);
|
| /**
|
|
|