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

Unified Diff: ppapi/c/pp_file_info.h

Issue 8538038: Add values to all (non-dev, non-private) Pepper .idl enumerations. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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/api/ppb_url_response_info.idl ('k') | ppapi/c/pp_var.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/c/pp_file_info.h
diff --git a/ppapi/c/pp_file_info.h b/ppapi/c/pp_file_info.h
index 8df6076227f12bfde5bd965713402abc3b8fe580..0b8353de9921ac54376e285638b855c654c25c5e 100644
--- a/ppapi/c/pp_file_info.h
+++ b/ppapi/c/pp_file_info.h
@@ -3,7 +3,7 @@
* found in the LICENSE file.
*/
-/* From pp_file_info.idl modified Sat Jul 16 16:50:26 2011. */
+/* From pp_file_info.idl modified Fri Nov 11 19:56:09 2011. */
#ifndef PPAPI_C_PP_FILE_INFO_H_
#define PPAPI_C_PP_FILE_INFO_H_
@@ -27,11 +27,11 @@
*/
typedef enum {
/** A regular file type */
- PP_FILETYPE_REGULAR,
+ PP_FILETYPE_REGULAR = 0,
/** A directory */
- PP_FILETYPE_DIRECTORY,
+ PP_FILETYPE_DIRECTORY = 1,
/** A catch-all for unidentified types */
- PP_FILETYPE_OTHER
+ PP_FILETYPE_OTHER = 2
} PP_FileType;
PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_FileType, 4);
@@ -42,11 +42,11 @@ typedef enum {
/** For identified invalid return values */
PP_FILESYSTEMTYPE_INVALID = 0,
/** For external file system types */
- PP_FILESYSTEMTYPE_EXTERNAL,
+ PP_FILESYSTEMTYPE_EXTERNAL = 1,
/** For local persistant file system types */
- PP_FILESYSTEMTYPE_LOCALPERSISTENT,
+ PP_FILESYSTEMTYPE_LOCALPERSISTENT = 2,
/** For local temporary file system types */
- PP_FILESYSTEMTYPE_LOCALTEMPORARY
+ PP_FILESYSTEMTYPE_LOCALTEMPORARY = 3
} PP_FileSystemType;
PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_FileSystemType, 4);
/**
« no previous file with comments | « ppapi/api/ppb_url_response_info.idl ('k') | ppapi/c/pp_var.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698