Index: ppapi/c/pp_file_info.h |
diff --git a/ppapi/c/pp_file_info.h b/ppapi/c/pp_file_info.h |
index e53cae1345e240bb170eab9a497689eb8de7fe00..bf3664374d397dd8430a4cc455b21ebc36f948a4 100644 |
--- a/ppapi/c/pp_file_info.h |
+++ b/ppapi/c/pp_file_info.h |
@@ -46,7 +46,9 @@ typedef enum { |
/** For local persistent file system types */ |
PP_FILESYSTEMTYPE_LOCALPERSISTENT = 2, |
/** For local temporary file system types */ |
- PP_FILESYSTEMTYPE_LOCALTEMPORARY = 3 |
+ PP_FILESYSTEMTYPE_LOCALTEMPORARY = 3, |
+ /** For isolated file system types */ |
+ PP_FILESYSTEMTYPE_ISOLATED = 4 |
palmer
2013/05/02 21:30:09
Do these have to be kept in sync with the IDL file
victorhsieh
2013/05/03 17:26:58
Oops, forgot to run generator.
|
} PP_FileSystemType; |
PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_FileSystemType, 4); |
/** |