| OLD | NEW |
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. | 3 * found in the LICENSE file. |
| 4 */ | 4 */ |
| 5 | 5 |
| 6 /* From pp_file_info.idl modified Thu Mar 28 11:11:01 2013. */ | 6 /* From pp_file_info.idl modified Thu Mar 28 11:11:01 2013. */ |
| 7 | 7 |
| 8 #ifndef PPAPI_C_PP_FILE_INFO_H_ | 8 #ifndef PPAPI_C_PP_FILE_INFO_H_ |
| 9 #define PPAPI_C_PP_FILE_INFO_H_ | 9 #define PPAPI_C_PP_FILE_INFO_H_ |
| 10 | 10 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 * The <code>PP_FileSystemType</code> enum contains file system type constants. | 39 * The <code>PP_FileSystemType</code> enum contains file system type constants. |
| 40 */ | 40 */ |
| 41 typedef enum { | 41 typedef enum { |
| 42 /** For identified invalid return values */ | 42 /** For identified invalid return values */ |
| 43 PP_FILESYSTEMTYPE_INVALID = 0, | 43 PP_FILESYSTEMTYPE_INVALID = 0, |
| 44 /** For external file system types */ | 44 /** For external file system types */ |
| 45 PP_FILESYSTEMTYPE_EXTERNAL = 1, | 45 PP_FILESYSTEMTYPE_EXTERNAL = 1, |
| 46 /** For local persistent file system types */ | 46 /** For local persistent file system types */ |
| 47 PP_FILESYSTEMTYPE_LOCALPERSISTENT = 2, | 47 PP_FILESYSTEMTYPE_LOCALPERSISTENT = 2, |
| 48 /** For local temporary file system types */ | 48 /** For local temporary file system types */ |
| 49 PP_FILESYSTEMTYPE_LOCALTEMPORARY = 3 | 49 PP_FILESYSTEMTYPE_LOCALTEMPORARY = 3, |
| 50 /** For isolated file system types */ |
| 51 PP_FILESYSTEMTYPE_ISOLATED = 4 |
| 50 } PP_FileSystemType; | 52 } PP_FileSystemType; |
| 51 PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_FileSystemType, 4); | 53 PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_FileSystemType, 4); |
| 52 /** | 54 /** |
| 53 * @} | 55 * @} |
| 54 */ | 56 */ |
| 55 | 57 |
| 56 /** | 58 /** |
| 57 * @addtogroup Structs | 59 * @addtogroup Structs |
| 58 * @{ | 60 * @{ |
| 59 */ | 61 */ |
| (...skipping 27 matching lines...) Expand all Loading... |
| 87 */ | 89 */ |
| 88 PP_Time last_modified_time; | 90 PP_Time last_modified_time; |
| 89 }; | 91 }; |
| 90 PP_COMPILE_ASSERT_STRUCT_SIZE_IN_BYTES(PP_FileInfo, 40); | 92 PP_COMPILE_ASSERT_STRUCT_SIZE_IN_BYTES(PP_FileInfo, 40); |
| 91 /** | 93 /** |
| 92 * @} | 94 * @} |
| 93 */ | 95 */ |
| 94 | 96 |
| 95 #endif /* PPAPI_C_PP_FILE_INFO_H_ */ | 97 #endif /* PPAPI_C_PP_FILE_INFO_H_ */ |
| 96 | 98 |
| OLD | NEW |