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 742 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
753 "63ED55E43214C211F82122ED56407FF1A807F2A3", // Dev | 753 "63ED55E43214C211F82122ED56407FF1A807F2A3", // Dev |
754 "FA01E0B81978950F2BC5A50512FD769725F57510", // Beta | 754 "FA01E0B81978950F2BC5A50512FD769725F57510", // Beta |
755 "B11A93E7E5B541F8010245EBDE2C74647D6C14B9", // Canary | 755 "B11A93E7E5B541F8010245EBDE2C74647D6C14B9", // Canary |
756 "F155646B5D1CA545F7E1E4E20D573DFDD44C2540", // Google Cast Beta | 756 "F155646B5D1CA545F7E1E4E20D573DFDD44C2540", // Google Cast Beta |
757 "16CA7A47AAE4BE49B1E75A6B960C3875E945B264", // Google Cast Stable | 757 "16CA7A47AAE4BE49B1E75A6B960C3875E945B264", // Google Cast Stable |
758 "7AE714FFD394E073F0294CFA134C9F91DB5FBAA4", // CCD Development | 758 "7AE714FFD394E073F0294CFA134C9F91DB5FBAA4", // CCD Development |
759 "C7DA3A55C2355F994D3FDDAD120B426A0DF63843", // CCD Testing | 759 "C7DA3A55C2355F994D3FDDAD120B426A0DF63843", // CCD Testing |
760 "75E3CFFFC530582C583E4690EF97C70B9C8423B7" // CCD Release | 760 "75E3CFFFC530582C583E4690EF97C70B9C8423B7" // CCD Release |
761 ] | 761 ] |
762 }, | 762 }, |
| 763 "notificationGetter": { |
| 764 "channel": "trunk", |
| 765 "extension_types": ["extension", "platform_app"] |
| 766 }, |
763 "notifications": { | 767 "notifications": { |
764 // The chrome.notifications functionality listed in notifications.idl is | 768 // The chrome.notifications functionality listed in notifications.idl is |
765 // available only to extension/platform_app types. The implementation of | 769 // available only to extension/platform_app types. The implementation of |
766 // that functionality enforces that restriction in | 770 // that functionality enforces that restriction in |
767 // NotificationsApiFunction::IsNotificationsApiAvailable(). This is more | 771 // NotificationsApiFunction::IsNotificationsApiAvailable(). This is more |
768 // complicated than other namespaces because we are sharing the | 772 // complicated than other namespaces because we are sharing the |
769 // notifications permission with WebKit/Blink notifications. | 773 // notifications permission with WebKit/Blink notifications. |
770 "channel": "stable", | 774 "channel": "stable", |
771 "extension_types": [ | 775 "extension_types": [ |
772 "extension", "legacy_packaged_app", "hosted_app", "platform_app" | 776 "extension", "legacy_packaged_app", "hosted_app", "platform_app" |
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1082 // Only allowed for whitelisted extensions until all the caveats are | 1086 // Only allowed for whitelisted extensions until all the caveats are |
1083 // addressed. Tracked in crbug/285151. | 1087 // addressed. Tracked in crbug/285151. |
1084 "channel": "stable", | 1088 "channel": "stable", |
1085 "extension_types": ["extension"], | 1089 "extension_types": ["extension"], |
1086 "location": "component", | 1090 "location": "component", |
1087 "whitelist": [ | 1091 "whitelist": [ |
1088 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension | 1092 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension |
1089 ] | 1093 ] |
1090 }] | 1094 }] |
1091 } | 1095 } |
OLD | NEW |