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

Unified Diff: chrome/common/extensions/api/developer_private.idl

Issue 132313009: New API to copy syncfs folder to localfs. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: nit Created 6 years, 11 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: chrome/common/extensions/api/developer_private.idl
diff --git a/chrome/common/extensions/api/developer_private.idl b/chrome/common/extensions/api/developer_private.idl
index 57307e3791961eb4a02017967a3d02a9e8594f1a..c16f22c41ca0a043792e4c19236b8addbeae5f78 100644
--- a/chrome/common/extensions/api/developer_private.idl
+++ b/chrome/common/extensions/api/developer_private.idl
@@ -175,14 +175,9 @@ namespace developerPrivate {
// Load a user selected unpacked item
static void loadUnpacked(optional VoidCallback callback);
- // Copies the syncfs folder for the extension to local disk.
- static void exportSyncfsFolderToLocalfs(DOMString folder_name,
- optional VoidCallback callback);
-
- // Loads the unpacked app / extension.
- // |callback| called with itemId of the loaded item.
- static void loadProject(DOMString project_name,
- PathCallback callback);
+ // Loads an extension / app from a given |directory|
+ static void loadDirectory([instanceOf=DirectoryEntry] object directory,
+ PathCallback callback);
// Open Dialog to browse to an entry.
// |select_type| : Select a file or a folder.

Powered by Google App Engine
This is Rietveld 408576698