| 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 710 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 721 "A6C87307BBE5886CC5F1393025000E2FE8060BF2", | 721 "A6C87307BBE5886CC5F1393025000E2FE8060BF2", |
| 722 "3407516021EA3669C0EC8E65E6B9837E5A521B9C" | 722 "3407516021EA3669C0EC8E65E6B9837E5A521B9C" |
| 723 ] | 723 ] |
| 724 }, | 724 }, |
| 725 "nativeMessaging": { | 725 "nativeMessaging": { |
| 726 "channel": "stable", | 726 "channel": "stable", |
| 727 "extension_types": [ | 727 "extension_types": [ |
| 728 "extension", "legacy_packaged_app", "platform_app" | 728 "extension", "legacy_packaged_app", "platform_app" |
| 729 ] | 729 ] |
| 730 }, | 730 }, |
| 731 "networkingPrivate": { | |
| 732 "channel": "stable", | |
| 733 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], | |
| 734 "platforms": ["chromeos", "mac", "win", "linux"], | |
| 735 "whitelist": [ | |
| 736 "0DE0F05680A4A056BCEC864ED8DDA84296F82B40", // http://crbug.com/434651 | |
| 737 "1C93BD3CF875F4A73C0B2A163BB8FBDA8B8B3D80", // http://crbug.com/293683 | |
| 738 "A3BC37E2148AC4E99BE4B16AF9D42DD1E592BBBE", // http://crbug.com/293683 | |
| 739 "8C3741E3AF0B93B6E8E0DDD499BB0B74839EA578", // http://crbug.com/234235 | |
| 740 "E703483CEF33DEC18B4B6DD84B5C776FB9182BDB", // http://crbug.com/234235 | |
| 741 "307E96539209F95A1A8740C713E6998A73657D96", // http://crbug.com/329690 | |
| 742 "11B478CEC461C766A2DC1E5BEEB7970AE06DC9C2", // http://crbug.com/380890 | |
| 743 "0EFB879311E9EFBB7C45251F89EC655711B1F6ED", // http://crbug.com/380890 | |
| 744 "9193D3A51E2FE33B496CDA53EA330423166E7F02", // http://crbug.com/380890 | |
| 745 "F9119B8B18C7C82B51E7BC6FF816B694F2EC3E89", // http://crbug.com/380890 | |
| 746 "63ED55E43214C211F82122ED56407FF1A807F2A3", // Dev | |
| 747 "FA01E0B81978950F2BC5A50512FD769725F57510", // Beta | |
| 748 "B11A93E7E5B541F8010245EBDE2C74647D6C14B9", // Canary | |
| 749 "F155646B5D1CA545F7E1E4E20D573DFDD44C2540", // Google Cast Beta | |
| 750 "16CA7A47AAE4BE49B1E75A6B960C3875E945B264", // Google Cast Stable | |
| 751 "7AE714FFD394E073F0294CFA134C9F91DB5FBAA4", // CCD Development | |
| 752 "C7DA3A55C2355F994D3FDDAD120B426A0DF63843", // CCD Testing | |
| 753 "75E3CFFFC530582C583E4690EF97C70B9C8423B7", // CCD Release | |
| 754 "4F25792AF1AA7483936DE29C07806F203C7170A0", // http://crbug.com/407693 | |
| 755 "BD8781D757D830FC2E85470A1B6E8A718B7EE0D9", // http://crbug.com/407693 | |
| 756 "4AC2B6C63C6480D150DFDA13E4A5956EB1D0DDBB", // http://crbug.com/407693 | |
| 757 "81986D4F846CEDDDB962643FA501D1780DD441BB" // http://crbug.com/407693 | |
| 758 ] | |
| 759 }, | |
| 760 "notificationProvider": { | 731 "notificationProvider": { |
| 761 "channel": "trunk", | 732 "channel": "trunk", |
| 762 "extension_types": ["extension", "platform_app"] | 733 "extension_types": ["extension", "platform_app"] |
| 763 }, | 734 }, |
| 764 "notifications": { | 735 "notifications": { |
| 765 // The chrome.notifications functionality listed in notifications.idl is | 736 // The chrome.notifications functionality listed in notifications.idl is |
| 766 // available only to extension/platform_app types. The implementation of | 737 // available only to extension/platform_app types. The implementation of |
| 767 // that functionality enforces that restriction in | 738 // that functionality enforces that restriction in |
| 768 // NotificationsApiFunction::IsNotificationsApiAvailable(). This is more | 739 // NotificationsApiFunction::IsNotificationsApiAvailable(). This is more |
| 769 // complicated than other namespaces because we are sharing the | 740 // complicated than other namespaces because we are sharing the |
| (...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1022 "webstorePrivate": { | 993 "webstorePrivate": { |
| 1023 "channel": "stable", | 994 "channel": "stable", |
| 1024 "extension_types": ["extension", "legacy_packaged_app", "hosted_app"], | 995 "extension_types": ["extension", "legacy_packaged_app", "hosted_app"], |
| 1025 "whitelist": [ | 996 "whitelist": [ |
| 1026 "B44D08FD98F1523ED5837D78D0A606EA9D6206E5", // Web Store | 997 "B44D08FD98F1523ED5837D78D0A606EA9D6206E5", // Web Store |
| 1027 "2653F6F6C39BC6EEBD36A09AFB92A19782FF7EB4", // Enterprise Web Store | 998 "2653F6F6C39BC6EEBD36A09AFB92A19782FF7EB4", // Enterprise Web Store |
| 1028 "2779FA8B45841D61A37207CCFAC9CB393964FE5B" // Login Proxy (prototype) | 999 "2779FA8B45841D61A37207CCFAC9CB393964FE5B" // Login Proxy (prototype) |
| 1029 ] | 1000 ] |
| 1030 } | 1001 } |
| 1031 } | 1002 } |
| OLD | NEW |