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

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

Issue 264743014: Move chrome.runtime to //extensions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 7 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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/extensions. 6 // under src/extensions.
7 7
8 // See extensions/common/features/* to understand this file, in particular 8 // See extensions/common/features/* to understand this file, in particular
9 // feature.h, simple_feature.h, and base_feature_provider.h. 9 // feature.h, simple_feature.h, and base_feature_provider.h.
10 10
(...skipping 15 matching lines...) Expand all
26 { 26 {
27 "channel": "stable", 27 "channel": "stable",
28 "extension_types": ["extension", "platform_app"], 28 "extension_types": ["extension", "platform_app"],
29 "whitelist": [ 29 "whitelist": [
30 "7AE714FFD394E073F0294CFA134C9F91DB5FBAA4", // CCD Development 30 "7AE714FFD394E073F0294CFA134C9F91DB5FBAA4", // CCD Development
31 "C7DA3A55C2355F994D3FDDAD120B426A0DF63843", // CCD Testing 31 "C7DA3A55C2355F994D3FDDAD120B426A0DF63843", // CCD Testing
32 "75E3CFFFC530582C583E4690EF97C70B9C8423B7" // CCD Release 32 "75E3CFFFC530582C583E4690EF97C70B9C8423B7" // CCD Release
33 ] 33 ]
34 } 34 }
35 ], 35 ],
36 // Note: runtime is not actually a permission, but some systems check these
37 // values to verify restrictions.
38 "runtime": {
39 "channel": "stable",
40 "extension_types": ["extension", "legacy_packaged_app", "platform_app"]
41 },
36 "socket": [ 42 "socket": [
37 { 43 {
38 "channel": "stable", 44 "channel": "stable",
39 "extension_types": ["platform_app"] 45 "extension_types": ["platform_app"]
40 }, 46 },
41 { 47 {
42 "channel": "stable", 48 "channel": "stable",
43 "extension_types": ["extension"], 49 "extension_types": ["extension"],
44 "whitelist": [ 50 "whitelist": [
45 // The connectivity diagnostic utility is a component extension that is 51 // The connectivity diagnostic utility is a component extension that is
46 // used to try to provide suggestions on how to fix connection issues. 52 // used to try to provide suggestions on how to fix connection issues.
47 // It should be the only non-app allowed to use the socket API. 53 // It should be the only non-app allowed to use the socket API.
48 "32A1BA997F8AB8DE29ED1BA94AAF00CF2A3FEFA7" 54 "32A1BA997F8AB8DE29ED1BA94AAF00CF2A3FEFA7"
49 ] 55 ]
50 } 56 }
51 ], 57 ],
52 "storage": { 58 "storage": {
53 "channel": "stable", 59 "channel": "stable",
54 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], 60 "extension_types": ["extension", "legacy_packaged_app", "platform_app"],
55 "min_manifest_version": 2 61 "min_manifest_version": 2
56 } 62 }
57 } 63 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698