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 chrome/common/extensions/api/_features.md to understand this file, as | 7 // See chrome/common/extensions/api/_features.md to understand this file, as |
8 // well as feature.h, simple_feature.h, and feature_provider.h. | 8 // well as feature.h, simple_feature.h, and feature_provider.h. |
9 | 9 |
10 // If you add a new platform_app permission please update the "stubs_app" test: | 10 // If you add a new platform_app permission please update the "stubs_app" test: |
11 // chrome/test/data/extensions/api_test/stubs_app/manifest.json | 11 // chrome/test/data/extensions/api_test/stubs_app/manifest.json |
12 | 12 |
13 { | 13 { |
14 "accessibilityFeatures.modify": { | 14 "accessibilityFeatures.modify": { |
15 "channel": "stable", | 15 "channel": "stable", |
16 "extension_types": ["extension", "platform_app"] | 16 "extension_types": ["extension", "platform_app"] |
17 }, | 17 }, |
18 "accessibilityFeatures.read": { | 18 "accessibilityFeatures.read": { |
19 "channel": "stable", | 19 "channel": "stable", |
20 "extension_types": ["extension", "platform_app"] | 20 "extension_types": ["extension", "platform_app"] |
21 }, | 21 }, |
22 "accessibilityPrivate": { | 22 "accessibilityPrivate": { |
lazyboy
2017/05/09 16:28:25
Add two separate entries for accessibilityPrivate.
| |
23 "channel": "stable", | 23 "channel": "stable", |
24 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], | 24 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], |
25 "whitelist": [ "2FCBCE08B34CCA1728A85F1EFBD9A34DD2558B2E" ] | 25 "whitelist": [ |
26 "2FCBCE08B34CCA1728A85F1EFBD9A34DD2558B2E", | |
dmazzoni
2017/05/03 15:05:21
Comment this one as ChromeVox
| |
27 "E703483CEF33DEC18B4B6DD84B5C776FB9182BDB", // http://crbug.com/717501 | |
dmazzoni
2017/05/03 15:05:21
Rather than a bug, comment it with the name of the
lazyboy
2017/05/09 16:28:25
+1
| |
28 "A3BC37E2148AC4E99BE4B16AF9D42DD1E592BBBE", // http://crbug.com/717501 | |
29 "1C93BD3CF875F4A73C0B2A163BB8FBDA8B8B3D80", // http://crbug.com/717501 | |
30 "307E96539209F95A1A8740C713E6998A73657D96", // http://crbug.com/717501 | |
31 "4F25792AF1AA7483936DE29C07806F203C7170A0", // http://crbug.com/717501 | |
32 "BD8781D757D830FC2E85470A1B6E8A718B7EE0D9", // http://crbug.com/717501 | |
33 "4AC2B6C63C6480D150DFDA13E4A5956EB1D0DDBB", // http://crbug.com/717501 | |
34 "81986D4F846CEDDDB962643FA501D1780DD441BB" // http://crbug.com/717501 | |
35 ] | |
26 }, | 36 }, |
27 "activeTab": { | 37 "activeTab": { |
28 "channel": "stable", | 38 "channel": "stable", |
29 "extension_types": ["extension", "legacy_packaged_app"], | 39 "extension_types": ["extension", "legacy_packaged_app"], |
30 "min_manifest_version": 2 | 40 "min_manifest_version": 2 |
31 }, | 41 }, |
32 "activityLogPrivate": { | 42 "activityLogPrivate": { |
33 "channel": "stable", | 43 "channel": "stable", |
34 "extension_types": ["extension", "platform_app"], | 44 "extension_types": ["extension", "platform_app"], |
35 "whitelist": [ | 45 "whitelist": [ |
(...skipping 877 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
913 "channel": "stable", | 923 "channel": "stable", |
914 "extension_types": ["platform_app"], | 924 "extension_types": ["platform_app"], |
915 "platforms": ["chromeos"], | 925 "platforms": ["chromeos"], |
916 "whitelist": [ | 926 "whitelist": [ |
917 "A948368FC53BE437A55FEB414106E207925482F5", // Files app | 927 "A948368FC53BE437A55FEB414106E207925482F5", // Files app |
918 "8C726564C6DBE7380BAB388DE6CC7EC93EB44B06", // Video player | 928 "8C726564C6DBE7380BAB388DE6CC7EC93EB44B06", // Video player |
919 "5065C83E84321221675D20FBE4DC43C655CC8C6F" // Files app tests | 929 "5065C83E84321221675D20FBE4DC43C655CC8C6F" // Files app tests |
920 ] | 930 ] |
921 } | 931 } |
922 } | 932 } |
OLD | NEW |