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

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

Issue 13971005: Basic multi-module support (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add browser test Created 7 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/_manifest_features.json
diff --git a/chrome/common/extensions/api/_manifest_features.json b/chrome/common/extensions/api/_manifest_features.json
index bad5d91f4ece524f4bb3720e5bf1cf3bf1e198e8..42e19fc089bde5bd4e51e93296e38b4fa2c2be4c 100644
--- a/chrome/common/extensions/api/_manifest_features.json
+++ b/chrome/common/extensions/api/_manifest_features.json
@@ -29,16 +29,16 @@
"extension_types": ["platform_app"],
"min_manifest_version": 2
},
- "app.launch": {
- "channel": "stable",
- "extension_types": ["packaged_app", "hosted_app"]
- },
"app.isolation": {
"channel": "stable",
// Platform apps always have isolated storage, thus they cannot specify it
// via the manifest.
"extension_types": ["packaged_app", "hosted_app"]
},
+ "app.launch": {
+ "channel": "stable",
+ "extension_types": ["packaged_app", "hosted_app"]
+ },
"author": {
"channel": "stable",
"extension_types": "all"
@@ -143,14 +143,18 @@
]
}
],
+ "export": {
+ "channel": "dev",
+ "extension_types": ["shared_module"],
+ "whitelist": [
+ "gpcckkmippodnppallflahfabmeilgjg", // browser and unit tests
+ "6EAED1924DB611B6EEF2A664BD077BE7EAD33B8F"
+ ]
+ },
"file_browser_handlers": {
"channel": "stable",
"extension_types": ["extension", "packaged_app"]
},
- "media_galleries_handlers": {
- "channel": "stable",
- "extension_types": ["packaged_app", "platform_app"]
- },
"file_handlers": {
"channel": "stable",
"extension_types": ["platform_app"]
@@ -163,6 +167,10 @@
"channel": "stable",
"extension_types": "all"
},
+ "import": {
+ "channel": "dev",
+ "extension_types": "all"
+ },
"incognito": {
"channel": "stable",
"extension_types": ["extension", "packaged_app"]
@@ -181,10 +189,20 @@
"channel": "stable",
"extension_types": "all"
},
+ "kiosk_enabled": {
+ "channel": "stable",
+ "extension_types": [
+ "platform_app"
+ ]
+ },
"manifest_version": {
"channel": "stable",
"extension_types": "all"
},
+ "media_galleries_handlers": {
+ "channel": "stable",
+ "extension_types": ["packaged_app", "platform_app"]
+ },
"mime_types": {
"channel": "stable",
"extension_types": [ "extension", "packaged_app", "platform_app" ],
@@ -212,10 +230,10 @@
"channel": "stable",
"extension_types": "all"
},
- "kiosk_enabled": {
+ "oauth2": {
"channel": "stable",
"extension_types": [
- "platform_app"
+ "extension", "packaged_app", "platform_app"
]
},
"offline_enabled": {
@@ -240,12 +258,6 @@
"extension", "packaged_app", "hosted_app"
]
},
- "oauth2": {
- "channel": "stable",
- "extension_types": [
- "extension", "packaged_app", "platform_app"
- ]
- },
"page_action": {
"channel": "stable",
"extension_types": ["extension"]

Powered by Google App Engine
This is Rietveld 408576698