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

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

Issue 1127283003: Make some file_system_provider_capabilities fields optional. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleaned up. Created 5 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/api/manifest_types.json
diff --git a/chrome/common/extensions/api/manifest_types.json b/chrome/common/extensions/api/manifest_types.json
index 37abb295dce27d1a6f0999b04b675ccd045d58fb..2e982b81d2a35d7881124094c49908ba74dfa58e 100644
--- a/chrome/common/extensions/api/manifest_types.json
+++ b/chrome/common/extensions/api/manifest_types.json
@@ -183,11 +183,13 @@
"properties": {
"configurable": {
"type": "boolean",
- "description": "Whether configuring via <code>onConfigureRequested</code> is supported."
+ "optional": true,
+ "description": "Whether configuring via <code>onConfigureRequested</code> is supported. By default: <code>false</code>."
},
"multiple_mounts": {
"type": "boolean",
- "description": "Whether multiple (more than one) mounted file systems are supported."
+ "optional": true,
+ "description": "Whether multiple (more than one) mounted file systems are supported. By default: <code>false</code>."
},
"source": {
"$ref": "FileSystemProviderSource",

Powered by Google App Engine
This is Rietveld 408576698