OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 permissions for extension APIs implemented | 5 // This features file defines permissions for extension APIs implemented |
6 // under src/chrome. | 6 // under src/chrome. |
7 // See extensions/common/features/* to understand this file, in particular | 7 // See extensions/common/features/* to understand this file, in particular |
8 // feature.h, simple_feature.h, and base_feature_provider.h. | 8 // feature.h, simple_feature.h, and base_feature_provider.h. |
9 | 9 |
10 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash: | 10 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash: |
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
328 "channel": "stable", | 328 "channel": "stable", |
329 "extension_types": ["extension"], | 329 "extension_types": ["extension"], |
330 "whitelist": [ | 330 "whitelist": [ |
331 "63ED55E43214C211F82122ED56407FF1A807F2A3", // Dev | 331 "63ED55E43214C211F82122ED56407FF1A807F2A3", // Dev |
332 "FA01E0B81978950F2BC5A50512FD769725F57510", // Beta | 332 "FA01E0B81978950F2BC5A50512FD769725F57510", // Beta |
333 "B11A93E7E5B541F8010245EBDE2C74647D6C14B9", // Canary | 333 "B11A93E7E5B541F8010245EBDE2C74647D6C14B9", // Canary |
334 "F155646B5D1CA545F7E1E4E20D573DFDD44C2540", // Google Cast Beta | 334 "F155646B5D1CA545F7E1E4E20D573DFDD44C2540", // Google Cast Beta |
335 "16CA7A47AAE4BE49B1E75A6B960C3875E945B264" // Google Cast Stable | 335 "16CA7A47AAE4BE49B1E75A6B960C3875E945B264" // Google Cast Stable |
336 ] | 336 ] |
337 }, | 337 }, |
338 "enterprise.platformKeys": { | |
339 "channel": "dev", | |
340 "extension_types": ["extension", "legacy_packaged_app"] | |
not at google - send to devlin
2014/05/02 18:31:56
restrict to policy?
pneubeck (no reviews)
2014/05/05 20:09:35
How do I allow the test extension (of the *_apites
not at google - send to devlin
2014/05/05 21:09:24
You might need to add another method to extension_
| |
341 }, | |
338 "enterprise.platformKeysPrivate": { | 342 "enterprise.platformKeysPrivate": { |
339 "channel": "stable", | 343 "channel": "stable", |
340 "extension_types": ["extension", "legacy_packaged_app"], | 344 "extension_types": ["extension", "legacy_packaged_app"], |
341 "whitelist": [ | 345 "whitelist": [ |
342 "657FEC7E77355CA205B0E226586621F86B33F611", // Dogfood | 346 "657FEC7E77355CA205B0E226586621F86B33F611", // Dogfood |
343 "5894126C625EF31852F215ED301A5FF1F9B7D026" // Test | 347 "5894126C625EF31852F215ED301A5FF1F9B7D026" // Test |
344 ] | 348 ] |
345 }, | 349 }, |
346 "experimental": { | 350 "experimental": { |
347 "channel": "stable", | 351 "channel": "stable", |
(...skipping 641 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
989 // Only allowed for whitelisted extensions until all the caveats are | 993 // Only allowed for whitelisted extensions until all the caveats are |
990 // addressed. Tracked in crbug/285151. | 994 // addressed. Tracked in crbug/285151. |
991 "channel": "stable", | 995 "channel": "stable", |
992 "extension_types": ["extension"], | 996 "extension_types": ["extension"], |
993 "location": "component", | 997 "location": "component", |
994 "whitelist": [ | 998 "whitelist": [ |
995 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension | 999 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension |
996 ] | 1000 ] |
997 }] | 1001 }] |
998 } | 1002 } |
OLD | NEW |