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