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

Unified Diff: ppapi/api/private/ppb_isolated_file_system_private.idl

Issue 26803004: PPAPI: Add PluginPrivateFileSystem (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: overhaul Created 7 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
Index: ppapi/api/private/ppb_isolated_file_system_private.idl
diff --git a/ppapi/api/private/ppb_isolated_file_system_private.idl b/ppapi/api/private/ppb_isolated_file_system_private.idl
index cbbeb0354b64f28695b8762c36fe3cf5e2284180..c42d5201236083e60d88b94994c4e8012e011466 100644
--- a/ppapi/api/private/ppb_isolated_file_system_private.idl
+++ b/ppapi/api/private/ppb_isolated_file_system_private.idl
@@ -9,7 +9,7 @@
* This file contains the <code>PPB_IsolatedFileSystem_Private</code> interface.
*/
label Chrome {
- M33 = 0.1
+ M33 = 0.2
};
@@ -22,7 +22,9 @@ enum PP_IsolatedFileSystemType_Private {
/** Type for invalid file systems */
PP_ISOLATEDFILESYSTEMTYPE_PRIVATE_INVALID = 0,
/** Type for CRX file systems */
- PP_ISOLATEDFILESYSTEMTYPE_PRIVATE_CRX = 1
+ PP_ISOLATEDFILESYSTEMTYPE_PRIVATE_CRX = 1,
+ /** Type for PluginPrivate file systems */
+ PP_ISOLATEDFILESYSTEMTYPE_PRIVATE_PLUGINPRIVATE = 2
};
/* <code>PPB_IsolatedFileSystem_Private</code> interface */

Powered by Google App Engine
This is Rietveld 408576698