Chromium Code Reviews| Index: ppapi/c/trusted/ppb_file_io_trusted.h |
| =================================================================== |
| --- ppapi/c/trusted/ppb_file_io_trusted.h (revision 89748) |
| +++ ppapi/c/trusted/ppb_file_io_trusted.h (working copy) |
| @@ -2,19 +2,19 @@ |
| * Use of this source code is governed by a BSD-style license that can be |
| * found in the LICENSE file. |
| */ |
| -#ifndef PPAPI_C_DEV_PPB_FILE_IO_TRUSTED_DEV_H_ |
| -#define PPAPI_C_DEV_PPB_FILE_IO_TRUSTED_DEV_H_ |
| +#ifndef PPAPI_C_PPB_FILE_IO_TRUSTED_H_ |
| +#define PPAPI_C_PPB_FILE_IO_TRUSTED_H_ |
| #include "ppapi/c/pp_resource.h" |
| #include "ppapi/c/pp_stdint.h" |
| struct PP_CompletionCallback; |
| -#define PPB_FILEIOTRUSTED_DEV_INTERFACE_0_2 "PPB_FileIOTrusted(Dev);0.2" |
| -#define PPB_FILEIOTRUSTED_DEV_INTERFACE PPB_FILEIOTRUSTED_DEV_INTERFACE_0_2 |
| +#define PPB_FILEIOTRUSTED_INTERFACE_1_0 "PPB_FileIOTrusted(Dev);1.0" |
|
nfullagar
2011/06/21 20:15:23
Please see earlier comment on interface #
Sang Ahn
2011/06/21 20:41:08
Done.
|
| +#define PPB_FILEIOTRUSTED_INTERFACE PPB_FILEIOTRUSTED_INTERFACE_1_0 |
| // Available only to trusted implementations. |
| -struct PPB_FileIOTrusted_Dev { |
| +struct PPB_FileIOTrusted { |
| // Returns a file descriptor corresponding to the given FileIO object. On |
| // Windows, returns a HANDLE; on all other platforms, returns a POSIX file |
| // descriptor. The FileIO object must have been opened with a successful |
| @@ -44,5 +44,4 @@ |
| // undesirable. |
| }; |
| -#endif /* PPAPI_C_DEV_PPB_FILE_IO_TRUSTED_DEV_H_ */ |
| - |
| +#endif /* PPAPI_C_PPB_FILE_IO_TRUSTED_H_ */ |