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

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

Issue 26803004: PPAPI: Add PluginPrivateFileSystem (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 2 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
Index: ppapi/api/private/ppb_plugin_private_file_system_private.idl
diff --git a/ppapi/api/private/ppb_plugin_private_file_system_private.idl b/ppapi/api/private/ppb_plugin_private_file_system_private.idl
new file mode 100644
index 0000000000000000000000000000000000000000..818776e67d9100ff23719e4027de72ad1bad2421
--- /dev/null
+++ b/ppapi/api/private/ppb_plugin_private_file_system_private.idl
@@ -0,0 +1,33 @@
+/* Copyright 2013 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.
+ */
+
+[generate_thunk,thunk_include="ppapi/thunk/ppb_plugin_private_file_system_private_api.h"]
+
+/**
+ * This file contains the <code>PPB_PluginPrivateFileSystem_Private</code> interface.
+ */
+label Chrome {
+ M32 = 0.1
+};
+
+/* <code>PPB_PluginPrivateFileSystem_Private</code> interface */
+interface PPB_PluginPrivateFileSystem_Private {
teravest 2013/10/29 17:14:11 It would be nice to unify this with PPB_Ext_CrxFil
nhiroki 2013/11/12 13:36:15 Done by http://crrev.com/233807
+ /**
+ * Open() opens the plugin private file system.
+ *
+ * @param[in] fs A <code>PP_Resource</code> corresponding to a
+ * PluginPrivateFileSystem.
+ * @param[out] file_system An output <code>PP_Resource</code> corresponding
+ * to a PPB_FileSystem.
+ * @param[in] callback A <code>PP_CompletionCallback</code> to be called upon
+ * completion of Open.
+ *
+ * @return An int32_t containing an error code from <code>pp_errors.h</code>.
+ */
+ [singleton,api=PPB_PluginPrivateFileSystem_Private_API]
+ int32_t Open([in] PP_Instance instance,
+ [out] PP_Resource file_system,
+ [in] PP_CompletionCallback callback);
+};

Powered by Google App Engine
This is Rietveld 408576698