Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(154)

Side by Side Diff: ppapi/api/ppb_file_ref.idl

Issue 14784002: Move DirectoryReader::ReadEntries to FileRef::ReadDirectoryEntries (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: address teravests's comments Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ppapi/api/pp_directory_entry.idl ('k') | ppapi/c/dev/ppb_directory_reader_dev.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 /** 6 /**
7 * This file defines the API to create a file reference or "weak pointer" to a 7 * This file defines the API to create a file reference or "weak pointer" to a
8 * file in a file system. 8 * file in a file system.
9 */ 9 */
10 10
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 * populated with information about the file or directory. 178 * populated with information about the file or directory.
179 * @param[in] callback A <code>PP_CompletionCallback</code> to be called upon 179 * @param[in] callback A <code>PP_CompletionCallback</code> to be called upon
180 * completion of Query(). 180 * completion of Query().
181 * 181 *
182 * @return An int32_t containing an error code from <code>pp_errors.h</code>. 182 * @return An int32_t containing an error code from <code>pp_errors.h</code>.
183 */ 183 */
184 [version=1.1] 184 [version=1.1]
185 int32_t Query([in] PP_Resource file_ref, 185 int32_t Query([in] PP_Resource file_ref,
186 [out] PP_FileInfo info, 186 [out] PP_FileInfo info,
187 [in] PP_CompletionCallback callback); 187 [in] PP_CompletionCallback callback);
188
189 /* Reads all entries in a directory.
190 *
191 * @param[in] file_ref A <code>PP_Resource</code> corresponding to a directory
192 * reference.
193 * @param[in] output An output array which will receive
194 * <code>PP_DirectoryEntry</code> objects on success.
195 * @param[in] callback A <code>PP_CompletionCallback</code> to run on
196 * completion.
197 *
198 * @return An int32_t containing an error code from <code>pp_errors.h</code>.
199 */
200 [version=1.1]
201 int32_t ReadEntries([in] PP_Resource file_ref,
raymes 2013/05/02 20:44:15 Now that this has moved to FileRef, maybe we shoul
202 [in] PP_ArrayOutput output,
203 [in] PP_CompletionCallback callback);
188 }; 204 };
189 205
OLDNEW
« no previous file with comments | « ppapi/api/pp_directory_entry.idl ('k') | ppapi/c/dev/ppb_directory_reader_dev.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698