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

Side by Side Diff: chrome/common/extensions/api/extfs.idl

Issue 16439016: extfs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2012 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 namespace extfs {
6 callback BoolCallback = void (boolean result);
7
8 dictionary EntryInfo {
9 boolean isDirectory;
10 DOMString name;
11 };
12
13 interface Functions {
14 static void addMountPoint(DOMString mountName, BoolCallback callback);
15 static void didGetFileInfo(long requestId, EntryInfo entry);
16 };
17
18 interface Events {
19 static void onGetFileInfo(long requestId, DOMString path);
20 };
21 };
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/api.gyp ('k') | chrome/common/extensions/permissions/api_permission.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698