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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 "extension_types": ["extension", "platform_app"], | 59 "extension_types": ["extension", "platform_app"], |
60 "whitelist": [ | 60 "whitelist": [ |
61 "05EBA3051DFCA6AF17070AEE5FE8C66322FF4738", // http://crbug.com/431978 | 61 "05EBA3051DFCA6AF17070AEE5FE8C66322FF4738", // http://crbug.com/431978 |
62 "11B478CEC461C766A2DC1E5BEEB7970AE06DC9C2", // http://crbug.com/458218 | 62 "11B478CEC461C766A2DC1E5BEEB7970AE06DC9C2", // http://crbug.com/458218 |
63 "0EFB879311E9EFBB7C45251F89EC655711B1F6ED", // http://crbug.com/458218 | 63 "0EFB879311E9EFBB7C45251F89EC655711B1F6ED", // http://crbug.com/458218 |
64 "9193D3A51E2FE33B496CDA53EA330423166E7F02", // http://crbug.com/458218 | 64 "9193D3A51E2FE33B496CDA53EA330423166E7F02", // http://crbug.com/458218 |
65 "F9119B8B18C7C82B51E7BC6FF816B694F2EC3E89" // http://crbug.com/458218 | 65 "F9119B8B18C7C82B51E7BC6FF816B694F2EC3E89" // http://crbug.com/458218 |
66 ] | 66 ] |
67 } | 67 } |
68 ], | 68 ], |
| 69 "autofillPrivate": { |
| 70 "channel": "trunk", |
| 71 "extension_types": ["extension", "platform_app"], |
| 72 // TODO(khorimoto): Whitelist the settings app once it's an app. |
| 73 "location": "component" |
| 74 }, |
69 "autotestPrivate": { | 75 "autotestPrivate": { |
70 "channel": "stable", | 76 "channel": "stable", |
71 "extension_types": ["extension", "legacy_packaged_app"], | 77 "extension_types": ["extension", "legacy_packaged_app"], |
72 "location": "component" | 78 "location": "component" |
73 }, | 79 }, |
74 "background": { | 80 "background": { |
75 "channel": "stable", | 81 "channel": "stable", |
76 "extension_types": [ | 82 "extension_types": [ |
77 "platform_app", "extension", "legacy_packaged_app", "hosted_app" | 83 "platform_app", "extension", "legacy_packaged_app", "hosted_app" |
78 ] | 84 ] |
(...skipping 908 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
987 }, | 993 }, |
988 "webstorePrivate": { | 994 "webstorePrivate": { |
989 "channel": "stable", | 995 "channel": "stable", |
990 "extension_types": ["extension", "legacy_packaged_app", "hosted_app"], | 996 "extension_types": ["extension", "legacy_packaged_app", "hosted_app"], |
991 "whitelist": [ | 997 "whitelist": [ |
992 "B44D08FD98F1523ED5837D78D0A606EA9D6206E5", // Web Store | 998 "B44D08FD98F1523ED5837D78D0A606EA9D6206E5", // Web Store |
993 "2653F6F6C39BC6EEBD36A09AFB92A19782FF7EB4" // Enterprise Web Store | 999 "2653F6F6C39BC6EEBD36A09AFB92A19782FF7EB4" // Enterprise Web Store |
994 ] | 1000 ] |
995 } | 1001 } |
996 } | 1002 } |
OLD | NEW |