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

Unified Diff: ppapi/c/private/ppb_flash_file.h

Issue 7248047: Migrating PPB_FileIO_Dev, PPB_FileRef_Dev, and PPB_FileSystem_Dev dependencies to PPB_FileIO, PPB... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: ppapi/c/private/ppb_flash_file.h
===================================================================
--- ppapi/c/private/ppb_flash_file.h (revision 91228)
+++ ppapi/c/private/ppb_flash_file.h (working copy)
@@ -23,7 +23,7 @@
struct PP_CompletionCallback;
struct PP_FontDescription_Dev;
-struct PP_FileInfo_Dev;
+struct PP_FileInfo;
struct PP_DirEntry_Dev {
const char* name;
@@ -87,7 +87,7 @@
// PP_OK if success, one of the PP_ERROR_* in case of failure.
int32_t (*QueryFile)(PP_Instance instance,
const char* path,
- struct PP_FileInfo_Dev* info);
+ struct PP_FileInfo* info);
// Gets the list of files contained in a directory. The return value is the
// ppapi error, PP_OK if success, one of the PP_ERROR_* in case of failure. If
@@ -116,7 +116,7 @@
int32_t mode,
PP_FileHandle* file);
int32_t (*QueryFile)(PP_Resource file_ref_id,
- struct PP_FileInfo_Dev* info);
+ struct PP_FileInfo* info);
};
#endif // PPAPI_C_PRIVATE_PPB_FLASH_FILE_H_

Powered by Google App Engine
This is Rietveld 408576698