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

Unified Diff: ppapi/c/pp_file_info.h

Issue 7242002: Sang's initial CL for moving the file interface out of dev. (Closed) Base URL: svn://chrome-svn/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
« no previous file with comments | « no previous file | ppapi/c/ppb_file_io.h » ('j') | ppapi/cpp/file_io.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/c/pp_file_info.h
===================================================================
--- ppapi/c/pp_file_info.h (revision 0)
+++ ppapi/c/pp_file_info.h (revision 0)
@@ -0,0 +1,37 @@
+/* Copyright (c) 2011 The Chromium Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+#ifndef PPAPI_C_PP_FILE_INFO_H_
+#define PPAPI_C_PP_FILE_INFO_H_
+
+#include "ppapi/c/pp_macros.h"
+#include "ppapi/c/pp_stdint.h"
+#include "ppapi/c/pp_time.h"
+
+typedef enum {
+ PP_FILETYPE_REGULAR,
+ PP_FILETYPE_DIRECTORY,
+ PP_FILETYPE_OTHER /* A catch-all for unidentified types. */
+} PP_FileType;
+PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_FileType, 4);
+
+typedef enum {
+ PP_FILESYSTEMTYPE_INVALID = 0, /* For identifying invalid return values. */
+ PP_FILESYSTEMTYPE_EXTERNAL,
+ PP_FILESYSTEMTYPE_LOCALPERSISTENT,
+ PP_FILESYSTEMTYPE_LOCALTEMPORARY
+} PP_FileSystemType;
+PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_FileSystemType, 4);
+
+struct PP_FileInfo {
+ int64_t size; /* Measured in bytes */
+ PP_FileType type;
+ PP_FileSystemType 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, 40);
+
+#endif /* PPAPI_C_PP_FILE_INFO_H_ */
« no previous file with comments | « no previous file | ppapi/c/ppb_file_io.h » ('j') | ppapi/cpp/file_io.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698