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

Side by Side 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, 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 /* Copyright 2013 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file.
4 */
5
6 [generate_thunk,thunk_include="ppapi/thunk/ppb_plugin_private_file_system_privat e_api.h"]
7
8 /**
9 * This file contains the <code>PPB_PluginPrivateFileSystem_Private</code> inter face.
10 */
11 label Chrome {
12 M32 = 0.1
13 };
14
15 /* <code>PPB_PluginPrivateFileSystem_Private</code> interface */
16 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
17 /**
18 * Open() opens the plugin private file system.
19 *
20 * @param[in] fs A <code>PP_Resource</code> corresponding to a
21 * PluginPrivateFileSystem.
22 * @param[out] file_system An output <code>PP_Resource</code> corresponding
23 * to a PPB_FileSystem.
24 * @param[in] callback A <code>PP_CompletionCallback</code> to be called upon
25 * completion of Open.
26 *
27 * @return An int32_t containing an error code from <code>pp_errors.h</code>.
28 */
29 [singleton,api=PPB_PluginPrivateFileSystem_Private_API]
30 int32_t Open([in] PP_Instance instance,
31 [out] PP_Resource file_system,
32 [in] PP_CompletionCallback callback);
33 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698