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

Unified Diff: ppapi/c/dev/pp_file_info_dev.h

Issue 7387011: Clean up the file dev interfaces. The combination of some dev and some non (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 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 | « no previous file | ppapi/c/dev/ppb_file_io_dev.h » ('j') | ppapi/tests/test_file_io.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/c/dev/pp_file_info_dev.h
===================================================================
--- ppapi/c/dev/pp_file_info_dev.h (revision 92658)
+++ ppapi/c/dev/pp_file_info_dev.h (working copy)
@@ -5,34 +5,11 @@
#ifndef PPAPI_C_DEV_PP_FILE_INFO_DEV_H_
#define PPAPI_C_DEV_PP_FILE_INFO_DEV_H_
-#include "ppapi/c/pp_macros.h"
-#include "ppapi/c/pp_stdint.h"
-#include "ppapi/c/pp_time.h"
+#include "ppapi/c/pp_file_info.h"
-typedef enum {
- PP_FILETYPE_REGULAR,
- PP_FILETYPE_DIRECTORY,
- PP_FILETYPE_OTHER /* A catch-all for unidentified types. */
-} PP_FileType_Dev;
-PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_FileType_Dev, 4);
+typedef PP_FileType PP_FileType_Dev;
+typedef PP_FileSystemType PP_FileSystemType_Dev;
+typedef struct PP_FileInfo PP_FileInfo_Dev;
-typedef enum {
- PP_FILESYSTEMTYPE_INVALID = 0, /* For identifying invalid return values. */
- PP_FILESYSTEMTYPE_EXTERNAL,
- PP_FILESYSTEMTYPE_LOCALPERSISTENT,
- PP_FILESYSTEMTYPE_LOCALTEMPORARY
-} PP_FileSystemType_Dev;
-PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_FileSystemType_Dev, 4);
-
-struct PP_FileInfo_Dev {
- int64_t size; /* Measured in bytes */
- PP_FileType_Dev type;
- PP_FileSystemType_Dev system_type;
- PP_Time creation_time;
- PP_Time last_access_time;
- PP_Time last_modified_time;
-};
-PP_COMPILE_ASSERT_STRUCT_SIZE_IN_BYTES(PP_FileInfo_Dev, 40);
-
#endif /* PPAPI_C_DEV_PP_FILE_INFO_DEV_H_ */
« no previous file with comments | « no previous file | ppapi/c/dev/ppb_file_io_dev.h » ('j') | ppapi/tests/test_file_io.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698