OLD | NEW |
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2011 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 ppb_file_system.idl modified Sat Jul 16 16:50:26 2011. */ | 6 /* From ppb_file_system.idl modified Wed Aug 24 20:52:19 2011. */ |
7 | 7 |
8 #ifndef PPAPI_C_PPB_FILE_SYSTEM_H_ | 8 #ifndef PPAPI_C_PPB_FILE_SYSTEM_H_ |
9 #define PPAPI_C_PPB_FILE_SYSTEM_H_ | 9 #define PPAPI_C_PPB_FILE_SYSTEM_H_ |
10 | 10 |
11 #include "ppapi/c/pp_bool.h" | 11 #include "ppapi/c/pp_bool.h" |
12 #include "ppapi/c/pp_completion_callback.h" | 12 #include "ppapi/c/pp_completion_callback.h" |
13 #include "ppapi/c/pp_file_info.h" | 13 #include "ppapi/c/pp_file_info.h" |
14 #include "ppapi/c/pp_instance.h" | 14 #include "ppapi/c/pp_instance.h" |
15 #include "ppapi/c/pp_macros.h" | 15 #include "ppapi/c/pp_macros.h" |
16 #include "ppapi/c/pp_resource.h" | 16 #include "ppapi/c/pp_resource.h" |
17 #include "ppapi/c/pp_stdint.h" | 17 #include "ppapi/c/pp_stdint.h" |
18 | 18 |
19 #define PPB_FILESYSTEM_INTERFACE_0_7 "PPB_FileSystem;0.7" | |
20 #define PPB_FILESYSTEM_INTERFACE_1_0 "PPB_FileSystem;1.0" | 19 #define PPB_FILESYSTEM_INTERFACE_1_0 "PPB_FileSystem;1.0" |
21 #define PPB_FILESYSTEM_INTERFACE PPB_FILESYSTEM_INTERFACE_1_0 | 20 #define PPB_FILESYSTEM_INTERFACE PPB_FILESYSTEM_INTERFACE_1_0 |
22 | 21 |
23 /** | 22 /** |
24 * @file | 23 * @file |
25 * This file defines the API to create a file system associated with a file. | 24 * This file defines the API to create a file system associated with a file. |
26 */ | 25 */ |
27 | 26 |
28 | 27 |
29 /** | 28 /** |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 * Open() completes. | 86 * Open() completes. |
88 */ | 87 */ |
89 PP_FileSystemType (*GetType)(PP_Resource file_system); | 88 PP_FileSystemType (*GetType)(PP_Resource file_system); |
90 }; | 89 }; |
91 /** | 90 /** |
92 * @} | 91 * @} |
93 */ | 92 */ |
94 | 93 |
95 #endif /* PPAPI_C_PPB_FILE_SYSTEM_H_ */ | 94 #endif /* PPAPI_C_PPB_FILE_SYSTEM_H_ */ |
96 | 95 |
OLD | NEW |