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

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

Issue 785723002: Add new extension APIs related to animation policy. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 10 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
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | chrome/common/extensions/api/accessibility_features.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 // 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:
11 // 11 //
12 // $ echo -n "aaaabbbbccccddddeeeeffffgggghhhh" | \ 12 // $ echo -n "aaaabbbbccccddddeeeeffffgggghhhh" | \
13 // sha1sum | tr '[:lower:]' '[:upper:]' 13 // sha1sum | tr '[:lower:]' '[:upper:]'
14 // 9A0417016F345C934A1A88F55CA17C05014EEEBA - 14 // 9A0417016F345C934A1A88F55CA17C05014EEEBA -
15 // 15 //
16 // Google employees: please update http://go/chrome-api-whitelist to map 16 // Google employees: please update http://go/chrome-api-whitelist to map
17 // hashes back to ids. 17 // hashes back to ids.
18 18
19 // If you add a new platform_app permission please update the "stubs_app" test: 19 // If you add a new platform_app permission please update the "stubs_app" test:
20 // chrome/test/data/extensions/api_test/stubs_app/manifest.json 20 // chrome/test/data/extensions/api_test/stubs_app/manifest.json
21 21
22 { 22 {
23 "accessibilityFeatures.modify": { 23 "accessibilityFeatures.modify": {
24 "channel": "stable", 24 "channel": "stable",
25 "extension_types": ["extension", "platform_app"], 25 "extension_types": ["extension", "platform_app"]
26 "platforms": ["chromeos"]
27 }, 26 },
28 "accessibilityFeatures.read": { 27 "accessibilityFeatures.read": {
29 "channel": "stable", 28 "channel": "stable",
30 "extension_types": ["extension", "platform_app"], 29 "extension_types": ["extension", "platform_app"]
31 "platforms": ["chromeos"]
32 }, 30 },
33 "accessibilityPrivate": { 31 "accessibilityPrivate": {
34 "channel": "stable", 32 "channel": "stable",
35 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], 33 "extension_types": ["extension", "legacy_packaged_app", "platform_app"],
36 "whitelist": [ "2FCBCE08B34CCA1728A85F1EFBD9A34DD2558B2E" ] 34 "whitelist": [ "2FCBCE08B34CCA1728A85F1EFBD9A34DD2558B2E" ]
37 }, 35 },
38 "activeTab": { 36 "activeTab": {
39 "channel": "stable", 37 "channel": "stable",
40 "extension_types": ["extension", "legacy_packaged_app"], 38 "extension_types": ["extension", "legacy_packaged_app"],
41 "min_manifest_version": 2 39 "min_manifest_version": 2
(...skipping 944 matching lines...) Expand 10 before | Expand all | Expand 10 after
986 "webstorePrivate": { 984 "webstorePrivate": {
987 "channel": "stable", 985 "channel": "stable",
988 "extension_types": ["extension", "legacy_packaged_app", "hosted_app"], 986 "extension_types": ["extension", "legacy_packaged_app", "hosted_app"],
989 "whitelist": [ 987 "whitelist": [
990 "B44D08FD98F1523ED5837D78D0A606EA9D6206E5", // Web Store 988 "B44D08FD98F1523ED5837D78D0A606EA9D6206E5", // Web Store
991 "2653F6F6C39BC6EEBD36A09AFB92A19782FF7EB4", // Enterprise Web Store 989 "2653F6F6C39BC6EEBD36A09AFB92A19782FF7EB4", // Enterprise Web Store
992 "2779FA8B45841D61A37207CCFAC9CB393964FE5B" // Login Proxy (prototype) 990 "2779FA8B45841D61A37207CCFAC9CB393964FE5B" // Login Proxy (prototype)
993 ] 991 ]
994 } 992 }
995 } 993 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | chrome/common/extensions/api/accessibility_features.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698