Chromium Code Reviews| Index: ppapi/api/ppb_directory_reader.idl |
| diff --git a/ppapi/api/dev/ppb_directory_reader_dev.idl b/ppapi/api/ppb_directory_reader.idl |
| similarity index 86% |
| rename from ppapi/api/dev/ppb_directory_reader_dev.idl |
| rename to ppapi/api/ppb_directory_reader.idl |
| index 5ba6065c0eef58127ce03b6efe05c8f4ee3756ea..777821f76904a8347a2d5e7357d03bde27acb3a9 100644 |
| --- a/ppapi/api/dev/ppb_directory_reader_dev.idl |
| +++ b/ppapi/api/ppb_directory_reader.idl |
| @@ -4,20 +4,20 @@ |
| */ |
| /* |
| - * This file defines the <code>PPB_DirectoryReader_Dev</code> interface. |
| + * This file defines the <code>PPB_DirectoryReader</code> interface. |
| */ |
| label Chrome { |
| - M27 = 0.6 |
| + M28 = 1.0 |
| }; |
| [assert_size(8)] |
| -struct PP_DirectoryEntry_Dev { |
| +struct PP_DirectoryEntry { |
| PP_Resource file_ref; |
| PP_FileType file_type; |
| }; |
| -interface PPB_DirectoryReader_Dev { |
| +interface PPB_DirectoryReader { |
|
dmichael (off chromium)
2013/04/23 16:08:59
Please add a brief interface-level comment explain
nhiroki
2013/04/24 02:01:45
Done.
|
| // Creates a DirectoryReader for the given directory. Upon success, the |
| // corresponding directory is classified as "in use" by the resulting |
| // DirectoryReader object until such time as the DirectoryReader object is |
|
dmichael (off chromium)
2013/04/23 16:08:59
nit: All the comments should probably be C-style h
nhiroki
2013/04/24 02:01:45
Done.
|
| @@ -34,7 +34,7 @@ interface PPB_DirectoryReader_Dev { |
| // @param[in] directory_reader A <code>PP_Resource</code> |
| // corresponding to a directory reader resource. |
| // @param[in] output An output array which will receive |
| - // <code>PP_DirectoryEntry_Dev</code> objects on success. |
| + // <code>PP_DirectoryEntry</code> objects on success. |
| // @param[in] callback A <code>PP_CompletionCallback</code> to run on |
| // completion. |
| // |