| Index: chrome/common/extensions/api/webview_tag.json
|
| diff --git a/chrome/common/extensions/api/webview_tag.json b/chrome/common/extensions/api/webview_tag.json
|
| index b3bceec1947078130da9526dc2026f7823e974b3..344ab3bc4a38ffe26210ba391f1645d45c5f3f42 100644
|
| --- a/chrome/common/extensions/api/webview_tag.json
|
| +++ b/chrome/common/extensions/api/webview_tag.json
|
| @@ -236,6 +236,21 @@
|
| ]
|
| },
|
| {
|
| + "id": "FileSystemPermissionRequest",
|
| + "type": "object",
|
| + "description": "The type of <code>request</code> object which accompanies a <code>filesystem</code> <a href=\"#event-permissionrequest\">permissionrequest</a></code> DOM event.",
|
| + "properties": {
|
| + "url": {
|
| + "description": "The URL of the frame requesting access to local file system.",
|
| + "type": "string"
|
| + }
|
| + },
|
| + "functions": [
|
| + { "name": "allow", "description": "Allow the permission request." },
|
| + { "name": "deny", "description": "Deny the permission request. This is the default behavior if <code>allow</code> is not called." }
|
| + ]
|
| + },
|
| + {
|
| "id": "LoadPluginPermissionRequest",
|
| "type": "object",
|
| "description": "The type of <code>request</code> object which accompanies a <code>loadplugin</code> <a href=\"#event-permissionrequest\">permissionrequest</a> DOM event.<p>",
|
| @@ -774,7 +789,7 @@
|
| "name": "permission",
|
| "description": "The type of permission being requested.",
|
| "type": "string",
|
| - "enum": ["media", "geolocation", "pointerLock", "download", "loadplugin"]
|
| + "enum": ["media", "geolocation", "pointerLock", "download", "loadplugin", "filesystem"]
|
| },
|
| {
|
| "name": "requestId",
|
|
|