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

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

Issue 719243002: Move default_locale manifest handler out of //chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: type alias Created 6 years, 1 month 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
« no previous file with comments | « extensions/common/BUILD.gn ('k') | extensions/common/common_manifest_handlers.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 "81986D4F846CEDDDB962643FA501D1780DD441BB" // http://crbug.com/407693 86 "81986D4F846CEDDDB962643FA501D1780DD441BB" // http://crbug.com/407693
87 ] 87 ]
88 }], 88 }],
89 "content_security_policy": { 89 "content_security_policy": {
90 "channel": "stable", 90 "channel": "stable",
91 // Platform apps have a restricted content security policy that cannot be 91 // Platform apps have a restricted content security policy that cannot be
92 // overriden (except for a whitelist of exceptions, see the 92 // overriden (except for a whitelist of exceptions, see the
93 // app.content_security_policy whitelist). 93 // app.content_security_policy whitelist).
94 "extension_types": ["extension", "legacy_packaged_app"] 94 "extension_types": ["extension", "legacy_packaged_app"]
95 }, 95 },
96 "current_locale": {
97 "channel": "stable",
98 "extension_types": "all"
99 },
100 "default_locale": {
101 "channel": "stable",
102 "extension_types": "all"
103 },
96 "description": { 104 "description": {
97 "channel": "stable", 105 "channel": "stable",
98 "extension_types": "all" 106 "extension_types": "all"
99 }, 107 },
100 "externally_connectable": { 108 "externally_connectable": {
101 "channel": "stable", 109 "channel": "stable",
102 "extension_types": [ 110 "extension_types": [
103 "extension", "hosted_app", "legacy_packaged_app", "platform_app" 111 "extension", "hosted_app", "legacy_packaged_app", "platform_app"
104 ] 112 ]
105 }, 113 },
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
241 "extension_types": ["platform_app"], 249 "extension_types": ["platform_app"],
242 "location": "component" 250 "location": "component"
243 } 251 }
244 ], 252 ],
245 "webview": { 253 "webview": {
246 "channel": "stable", 254 "channel": "stable",
247 "extension_types": ["platform_app"], 255 "extension_types": ["platform_app"],
248 "min_manifest_version": 2 256 "min_manifest_version": 2
249 } 257 }
250 } 258 }
OLDNEW
« no previous file with comments | « extensions/common/BUILD.gn ('k') | extensions/common/common_manifest_handlers.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698