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 778 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
789 "63ED55E43214C211F82122ED56407FF1A807F2A3", // Dev | 789 "63ED55E43214C211F82122ED56407FF1A807F2A3", // Dev |
790 "FA01E0B81978950F2BC5A50512FD769725F57510", // Beta | 790 "FA01E0B81978950F2BC5A50512FD769725F57510", // Beta |
791 "B11A93E7E5B541F8010245EBDE2C74647D6C14B9", // Canary | 791 "B11A93E7E5B541F8010245EBDE2C74647D6C14B9", // Canary |
792 "F155646B5D1CA545F7E1E4E20D573DFDD44C2540", // Google Cast Beta | 792 "F155646B5D1CA545F7E1E4E20D573DFDD44C2540", // Google Cast Beta |
793 "16CA7A47AAE4BE49B1E75A6B960C3875E945B264", // Google Cast Stable | 793 "16CA7A47AAE4BE49B1E75A6B960C3875E945B264", // Google Cast Stable |
794 "7AE714FFD394E073F0294CFA134C9F91DB5FBAA4", // CCD Development | 794 "7AE714FFD394E073F0294CFA134C9F91DB5FBAA4", // CCD Development |
795 "C7DA3A55C2355F994D3FDDAD120B426A0DF63843", // CCD Testing | 795 "C7DA3A55C2355F994D3FDDAD120B426A0DF63843", // CCD Testing |
796 "75E3CFFFC530582C583E4690EF97C70B9C8423B7" // CCD Release | 796 "75E3CFFFC530582C583E4690EF97C70B9C8423B7" // CCD Release |
797 ] | 797 ] |
798 }, | 798 }, |
| 799 "notificationProvider": { |
| 800 "channel": "trunk", |
| 801 "extension_types": ["extension", "platform_app"] |
| 802 }, |
799 "notifications": { | 803 "notifications": { |
800 // The chrome.notifications functionality listed in notifications.idl is | 804 // The chrome.notifications functionality listed in notifications.idl is |
801 // available only to extension/platform_app types. The implementation of | 805 // available only to extension/platform_app types. The implementation of |
802 // that functionality enforces that restriction in | 806 // that functionality enforces that restriction in |
803 // NotificationsApiFunction::IsNotificationsApiAvailable(). This is more | 807 // NotificationsApiFunction::IsNotificationsApiAvailable(). This is more |
804 // complicated than other namespaces because we are sharing the | 808 // complicated than other namespaces because we are sharing the |
805 // notifications permission with WebKit/Blink notifications. | 809 // notifications permission with WebKit/Blink notifications. |
806 "channel": "stable", | 810 "channel": "stable", |
807 "extension_types": [ | 811 "extension_types": [ |
808 "extension", "legacy_packaged_app", "hosted_app", "platform_app" | 812 "extension", "legacy_packaged_app", "hosted_app", "platform_app" |
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1112 // Only allowed for whitelisted extensions until all the caveats are | 1116 // Only allowed for whitelisted extensions until all the caveats are |
1113 // addressed. Tracked in crbug/285151. | 1117 // addressed. Tracked in crbug/285151. |
1114 "channel": "stable", | 1118 "channel": "stable", |
1115 "extension_types": ["extension"], | 1119 "extension_types": ["extension"], |
1116 "location": "component", | 1120 "location": "component", |
1117 "whitelist": [ | 1121 "whitelist": [ |
1118 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension | 1122 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension |
1119 ] | 1123 ] |
1120 }] | 1124 }] |
1121 } | 1125 } |
OLD | NEW |