Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(37)

Side by Side Diff: chrome/common/extensions/api/_permission_features.json

Issue 106973003: Rename experimental.accessibility to accessibilityPrivate (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix failing tests Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 // See c/c/e/features/* to understand this file, in particular feature.h, 5 // See c/c/e/features/* to understand this file, in particular feature.h,
6 // simple_feature.h, and base_feature_provider.h. 6 // simple_feature.h, and base_feature_provider.h.
7 7
8 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash: 8 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash:
9 // 9 //
10 // $ echo -n "aaaabbbbccccddddeeeeffffgggghhhh" | \ 10 // $ echo -n "aaaabbbbccccddddeeeeffffgggghhhh" | \
11 // sha1sum | tr '[:lower:]' '[:upper:]' 11 // sha1sum | tr '[:lower:]' '[:upper:]'
12 // 9A0417016F345C934A1A88F55CA17C05014EEEBA - 12 // 9A0417016F345C934A1A88F55CA17C05014EEEBA -
13 // 13 //
14 // Google employees: please update http://go/chrome-api-whitelist to map 14 // Google employees: please update http://go/chrome-api-whitelist to map
15 // hashes back to ids. 15 // hashes back to ids.
16 16
17 { 17 {
18 "accessibilityFeatures.modify": { 18 "accessibilityFeatures.modify": {
19 "channel": "dev", 19 "channel": "dev",
20 "extension_types": ["extension", "platform_app"] 20 "extension_types": ["extension", "platform_app"]
21 }, 21 },
22 "accessibilityFeatures.read": { 22 "accessibilityFeatures.read": {
23 "channel": "dev", 23 "channel": "dev",
24 "extension_types": ["extension", "platform_app"] 24 "extension_types": ["extension", "platform_app"]
25 }, 25 },
26 "accessibilityPrivate": {
27 "channel": "stable",
28 "extension_types": ["extension", "legacy_packaged_app", "platform_app"],
29 "location": "component"
30 },
26 "activeTab": { 31 "activeTab": {
27 "channel": "stable", 32 "channel": "stable",
28 "extension_types": ["extension", "legacy_packaged_app"], 33 "extension_types": ["extension", "legacy_packaged_app"],
29 "min_manifest_version": 2 34 "min_manifest_version": 2
30 }, 35 },
31 "activityLogPrivate": { 36 "activityLogPrivate": {
32 "channel": "stable", 37 "channel": "stable",
33 "extension_types": ["extension", "platform_app"], 38 "extension_types": ["extension", "platform_app"],
34 "whitelist": [ 39 "whitelist": [
35 "EE17C698905F7F2E6DDC87C9C30F11E164C829F4", // Watchdog release 40 "EE17C698905F7F2E6DDC87C9C30F11E164C829F4", // Watchdog release
(...skipping 924 matching lines...) Expand 10 before | Expand all | Expand 10 after
960 // Only allowed for whitelisted extensions until all the caveats are 965 // Only allowed for whitelisted extensions until all the caveats are
961 // addressed. Tracked in crbug/285151. 966 // addressed. Tracked in crbug/285151.
962 "channel": "stable", 967 "channel": "stable",
963 "extension_types": ["extension"], 968 "extension_types": ["extension"],
964 "location": "component", 969 "location": "component",
965 "whitelist": [ 970 "whitelist": [
966 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension 971 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension
967 ] 972 ]
968 }] 973 }]
969 } 974 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698