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

Unified Diff: ppapi/c/private/ppb_isolated_file_system_private.h

Issue 26803004: PPAPI: Add PluginPrivateFileSystem (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase 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/c/private/ppb_isolated_file_system_private.h
diff --git a/ppapi/c/private/ppb_isolated_file_system_private.h b/ppapi/c/private/ppb_isolated_file_system_private.h
index 4b9af4f257879d45f259b9e6e69afcbb8e739eb5..410108b8cb9b519840453a4db24d44b4c80b77a2 100644
--- a/ppapi/c/private/ppb_isolated_file_system_private.h
+++ b/ppapi/c/private/ppb_isolated_file_system_private.h
@@ -4,7 +4,7 @@
*/
/* From private/ppb_isolated_file_system_private.idl,
- * modified Sat Nov 2 00:10:18 2013.
+ * modified Fri Nov 8 02:21:15 2013.
*/
#ifndef PPAPI_C_PRIVATE_PPB_ISOLATED_FILE_SYSTEM_PRIVATE_H_
@@ -16,10 +16,10 @@
#include "ppapi/c/pp_resource.h"
#include "ppapi/c/pp_stdint.h"
-#define PPB_ISOLATEDFILESYSTEM_PRIVATE_INTERFACE_0_1 \
- "PPB_IsolatedFileSystem_Private;0.1"
+#define PPB_ISOLATEDFILESYSTEM_PRIVATE_INTERFACE_0_2 \
+ "PPB_IsolatedFileSystem_Private;0.2"
#define PPB_ISOLATEDFILESYSTEM_PRIVATE_INTERFACE \
- PPB_ISOLATEDFILESYSTEM_PRIVATE_INTERFACE_0_1
+ PPB_ISOLATEDFILESYSTEM_PRIVATE_INTERFACE_0_2
/**
* @file
@@ -38,7 +38,9 @@ typedef enum {
/** 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
} PP_IsolatedFileSystemType_Private;
PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_IsolatedFileSystemType_Private, 4);
/**
@@ -50,7 +52,7 @@ PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_IsolatedFileSystemType_Private, 4);
* @{
*/
/* <code>PPB_IsolatedFileSystem_Private</code> interface */
-struct PPB_IsolatedFileSystem_Private_0_1 {
+struct PPB_IsolatedFileSystem_Private_0_2 {
/**
* Open() opens a file system corresponding the given file system type.
*
@@ -74,7 +76,7 @@ struct PPB_IsolatedFileSystem_Private_0_1 {
struct PP_CompletionCallback callback);
};
-typedef struct PPB_IsolatedFileSystem_Private_0_1
+typedef struct PPB_IsolatedFileSystem_Private_0_2
PPB_IsolatedFileSystem_Private;
/**
* @}
« no previous file with comments | « ppapi/api/private/ppb_isolated_file_system_private.idl ('k') | ppapi/cpp/private/isolated_file_system_private.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698