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

Side by Side Diff: ppapi/api/private/ppb_ext_crx_file_system_private.idl

Issue 14188019: CRX FileSystem Pepper private API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 7 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 unified diff | Download patch
OLDNEW
(Empty)
1 /* Copyright (c) 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]
7
8 /**
9 * This file contains the <code>PPB_Ext_CrxFileSystem_Private</code> interface.
10 */
11 label Chrome {
12 M28 = 0.1
13 };
14
15 /* <code>PPB_Ext_CrxFileSystem_Private</code> interface */
16 interface PPB_Ext_CrxFileSystem_Private {
yzshen1 2013/04/30 19:31:19 IMO, you could remove Ext from the name because Cr
victorhsieh 2013/04/30 22:04:32 Yeah, I saw you have Ext there so I just name it t
17 /**
18 * Create() creates a CRX filesystem resource. It may fail when called from
yzshen1 2013/04/30 19:31:19 Is "may" precise here?
victorhsieh 2013/04/30 22:04:32 It's referenced from pp::FileSystem. I think it's
19 * non-extension context.
20 */
21 PP_Resource Create([in] PP_Instance insance);
22
23 /**
24 * Open() opens the CRX file system for the current extension. It will fail
25 * when called from non-extension context.
26 *
27 * @return An int32_t containing an error code from <code>pp_errors.h</code>.
28 */
29 int32_t Open([in] PP_Resource crxfs, [in] PP_CompletionCallback callback);
30 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698