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

Unified Diff: ppapi/api/pp_file_info.idl

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 | « no previous file | ppapi/api/pp_var.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/api/pp_file_info.idl
diff --git a/ppapi/api/pp_file_info.idl b/ppapi/api/pp_file_info.idl
index d974044bca4e6fab473be0be0da14b82f0ee229e..dab34abc4200e0b863c0cd1b75c8ac3008a0c4c3 100644
--- a/ppapi/api/pp_file_info.idl
+++ b/ppapi/api/pp_file_info.idl
@@ -13,11 +13,11 @@
[assert_size(4)]
enum PP_FileType {
/** 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
};
/**
@@ -28,11 +28,11 @@ enum PP_FileSystemType {
/** 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
};
/**
« no previous file with comments | « no previous file | ppapi/api/pp_var.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698