Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 }; | |
| OLD | NEW |