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

Unified Diff: chrome/common/extensions/api/fileBrowserPrivate.json

Issue 10231010: gdata: Apply correct mount label when mounting archives in GData (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: rebase Created 8 years, 8 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/fileBrowserPrivate.json
diff --git a/chrome/common/extensions/api/fileBrowserPrivate.json b/chrome/common/extensions/api/fileBrowserPrivate.json
index 179a93466a11caf0c85c76bac968afcb09471ff3..095094e8aff9f8f2a366fb338d25ea6c6a8fb9fb 100644
--- a/chrome/common/extensions/api/fileBrowserPrivate.json
+++ b/chrome/common/extensions/api/fileBrowserPrivate.json
@@ -121,9 +121,9 @@
"optional": true,
"description": "Disk volume mount point path. The value corresponds to its Entry.fullPath in File API."
},
- "sourceUrl": {
+ "sourcePath": {
"type": "string",
- "description": "The path to the mounted devicem, url of the mounted archive file or network resource."
+ "description": "The path to the mounted device, archive file or network resource."
},
"mountType": {
"type": "string",
@@ -242,7 +242,7 @@
"error_path_unmounted"],
"description": "Event type that tells listeners if mount was successful or an error occurred. It also specifies the error."
},
- "sourceUrl": {
+ "sourcePath": {
"type": "string",
"description": "Path that has been mounted."
},
@@ -663,8 +663,18 @@
{
"name": "options",
"type": "object",
- "description": "Name/value pairs for source specific options",
- "optional": true
+ "description": "Name/value pairs for source specific options"
+ },
+ {
+ "name": "callback",
+ "type": "function",
+ "parameters": [
+ {
+ "name": "sourcePath",
+ "type": "string",
+ "description": "Source path of the mount."
+ }
+ ]
}
]
},

Powered by Google App Engine
This is Rietveld 408576698