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 trusted/ppb_file_io_trusted.idl modified Mon Jul 18 10:45:10 2011. */ | 6 /* From trusted/ppb_file_io_trusted.idl modified Wed Oct 5 14:06:02 2011. */ |
7 | 7 |
8 #ifndef PPAPI_C_TRUSTED_PPB_FILE_IO_TRUSTED_H_ | 8 #ifndef PPAPI_C_TRUSTED_PPB_FILE_IO_TRUSTED_H_ |
9 #define PPAPI_C_TRUSTED_PPB_FILE_IO_TRUSTED_H_ | 9 #define PPAPI_C_TRUSTED_PPB_FILE_IO_TRUSTED_H_ |
10 | 10 |
11 #include "ppapi/c/pp_completion_callback.h" | 11 #include "ppapi/c/pp_completion_callback.h" |
12 #include "ppapi/c/pp_macros.h" | 12 #include "ppapi/c/pp_macros.h" |
13 #include "ppapi/c/pp_resource.h" | 13 #include "ppapi/c/pp_resource.h" |
14 #include "ppapi/c/pp_stdint.h" | 14 #include "ppapi/c/pp_stdint.h" |
15 | 15 |
16 #define PPB_FILEIOTRUSTED_INTERFACE_0_4 "PPB_FileIOTrusted;0.4" | 16 #define PPB_FILEIOTRUSTED_INTERFACE_0_4 "PPB_FileIOTrusted;0.4" |
17 #define PPB_FILEIOTRUSTED_INTERFACE PPB_FILEIOTRUSTED_INTERFACE_0_4 | 17 #define PPB_FILEIOTRUSTED_INTERFACE PPB_FILEIOTRUSTED_INTERFACE_0_4 |
18 | 18 |
19 /** | 19 /** |
20 * @file | 20 * @file |
21 * | 21 * |
22 * This file defines the trusted file IO interface | 22 * This file defines the trusted file IO interface |
23 */ | 23 */ |
24 | 24 |
25 | 25 |
26 /** | 26 /** |
27 * @addtogroup Interfaces | 27 * @addtogroup Interfaces |
28 * @{ | 28 * @{ |
29 */ | 29 */ |
30 /* Available only to trusted implementations. */ | 30 /* Available only to trusted implementations. */ |
31 struct PPB_FileIOTrusted { | 31 struct PPB_FileIOTrusted_0_4 { |
32 /** | 32 /** |
33 * Returns a file descriptor corresponding to the given FileIO object. On | 33 * Returns a file descriptor corresponding to the given FileIO object. On |
34 * Windows, returns a HANDLE; on all other platforms, returns a POSIX file | 34 * Windows, returns a HANDLE; on all other platforms, returns a POSIX file |
35 * descriptor. The FileIO object must have been opened with a successful | 35 * descriptor. The FileIO object must have been opened with a successful |
36 * call to FileIO::Open. The file descriptor will be closed automatically | 36 * call to FileIO::Open. The file descriptor will be closed automatically |
37 * when the FileIO object is closed or destroyed. | 37 * when the FileIO object is closed or destroyed. |
38 */ | 38 */ |
39 int32_t (*GetOSFileDescriptor)(PP_Resource file_io); | 39 int32_t (*GetOSFileDescriptor)(PP_Resource file_io); |
40 /** | 40 /** |
41 * Notifies the browser that underlying file will be modified. This gives | 41 * Notifies the browser that underlying file will be modified. This gives |
(...skipping 12 matching lines...) Expand all Loading... |
54 * TODO(darin): Maybe unify the above into a single WillChangeFileSize | 54 * TODO(darin): Maybe unify the above into a single WillChangeFileSize |
55 * method? The above methods have the advantage of mapping to PPB_FileIO | 55 * method? The above methods have the advantage of mapping to PPB_FileIO |
56 * Write and SetLength calls. WillChangeFileSize would require the caller to | 56 * Write and SetLength calls. WillChangeFileSize would require the caller to |
57 * compute the file size resulting from a Write call, which may be | 57 * compute the file size resulting from a Write call, which may be |
58 * undesirable. | 58 * undesirable. |
59 */ | 59 */ |
60 int32_t (*WillSetLength)(PP_Resource file_io, | 60 int32_t (*WillSetLength)(PP_Resource file_io, |
61 int64_t length, | 61 int64_t length, |
62 struct PP_CompletionCallback callback); | 62 struct PP_CompletionCallback callback); |
63 }; | 63 }; |
| 64 |
| 65 typedef struct PPB_FileIOTrusted_0_4 PPB_FileIOTrusted; |
64 /** | 66 /** |
65 * @} | 67 * @} |
66 */ | 68 */ |
67 | 69 |
68 #endif /* PPAPI_C_TRUSTED_PPB_FILE_IO_TRUSTED_H_ */ | 70 #endif /* PPAPI_C_TRUSTED_PPB_FILE_IO_TRUSTED_H_ */ |
69 | 71 |
OLD | NEW |