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

Side by Side Diff: extensions/common/api/_manifest_features.json

Issue 563923004: Move most extension feature unit tests to extensions_unittests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // This features file defines manifest keys implemented under src/extensions. 5 // This features file defines manifest keys implemented under src/extensions.
6 // See extensions/common/features/* to understand this file, in particular 6 // See extensions/common/features/* to understand this file, in particular
7 // feature.h, simple_feature.h, and base_feature_provider.h. 7 // feature.h, simple_feature.h, and base_feature_provider.h.
8 8
9 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash: 9 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash:
10 // 10 //
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 ], 59 ],
60 "max_manifest_version": 1 60 "max_manifest_version": 1
61 }, 61 },
62 "content_security_policy": { 62 "content_security_policy": {
63 "channel": "stable", 63 "channel": "stable",
64 // Platform apps have a restricted content security policy that cannot be 64 // Platform apps have a restricted content security policy that cannot be
65 // overriden (except for a whitelist of exceptions, see the 65 // overriden (except for a whitelist of exceptions, see the
66 // app.content_security_policy whitelist). 66 // app.content_security_policy whitelist).
67 "extension_types": ["extension", "legacy_packaged_app"] 67 "extension_types": ["extension", "legacy_packaged_app"]
68 }, 68 },
69 "description": {
70 "channel": "stable",
71 "extension_types": "all"
72 },
69 "incognito": [ 73 "incognito": [
70 { 74 {
71 "channel": "stable", 75 "channel": "stable",
72 "extension_types": ["extension", "legacy_packaged_app"] 76 "extension_types": ["extension", "legacy_packaged_app"]
73 }, 77 },
74 { 78 {
75 "channel": "stable", 79 "channel": "stable",
76 "extension_types": ["platform_app"], 80 "extension_types": ["platform_app"],
77 "location": "component" 81 "location": "component"
78 } 82 }
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 "extension_types": ["platform_app"], 126 "extension_types": ["platform_app"],
123 "location": "component" 127 "location": "component"
124 } 128 }
125 ], 129 ],
126 "webview": { 130 "webview": {
127 "channel": "stable", 131 "channel": "stable",
128 "extension_types": ["platform_app"], 132 "extension_types": ["platform_app"],
129 "min_manifest_version": 2 133 "min_manifest_version": 2
130 } 134 }
131 } 135 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698