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

Unified Diff: ppapi/c/ppb_file_system.h

Issue 7210027: Part I of many. Moving FileIO, FileRef, and FileSystem out of Dev. For now, just copying over s... (Closed) Base URL: http://src.chromium.org/svn/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
« no previous file with comments | « ppapi/c/ppb_file_ref.h ('k') | ppapi/c/trusted/ppb_file_io_trusted.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/c/ppb_file_system.h
===================================================================
--- ppapi/c/ppb_file_system.h (revision 89748)
+++ ppapi/c/ppb_file_system.h (working copy)
@@ -2,11 +2,11 @@
* 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_SYSTEM_DEV_H_
-#define PPAPI_C_DEV_PPB_FILE_SYSTEM_DEV_H_
+#ifndef PPAPI_C_PPB_FILE_SYSTEM_H_
+#define PPAPI_C_PPB_FILE_SYSTEM_H_
-#include "ppapi/c/dev/pp_file_info_dev.h"
#include "ppapi/c/pp_bool.h"
+#include "ppapi/c/pp_file_info.h"
#include "ppapi/c/pp_instance.h"
#include "ppapi/c/pp_resource.h"
#include "ppapi/c/pp_stdint.h"
@@ -14,12 +14,12 @@
struct PP_CompletionCallback;
-#define PPB_FILESYSTEM_DEV_INTERFACE_0_5 "PPB_FileSystem(Dev);0.5"
-#define PPB_FILESYSTEM_DEV_INTERFACE PPB_FILESYSTEM_DEV_INTERFACE_0_5
+#define PPB_FILESYSTEM_INTERFACE_0_6 "PPB_FileSystem;0.6"
+#define PPB_FILESYSTEM_INTERFACE PPB_FILESYSTEM_INTERFACE_0_6
-struct PPB_FileSystem_Dev {
+struct PPB_FileSystem {
/** Creates a filesystem object of the given type. */
- PP_Resource (*Create)(PP_Instance instance, PP_FileSystemType_Dev type);
+ PP_Resource (*Create)(PP_Instance instance, PP_FileSystemType type);
/** Returns PP_TRUE if the given resource is a FileSystem. */
PP_Bool (*IsFileSystem)(PP_Resource resource);
@@ -41,8 +41,7 @@
* Returns PP_FILESYSTEMTYPE_INVALID if the given resource is not a valid
* filesystem. It is valid to call this function even before Open completes.
*/
- PP_FileSystemType_Dev (*GetType)(PP_Resource file_system);
+ PP_FileSystemType (*GetType)(PP_Resource file_system);
};
-#endif /* PPAPI_C_DEV_PPB_FILE_SYSTEM_DEV_H_ */
-
+#endif /* PPAPI_C_PPB_FILE_SYSTEM_H_ */
« no previous file with comments | « ppapi/c/ppb_file_ref.h ('k') | ppapi/c/trusted/ppb_file_io_trusted.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698