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

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

Issue 1532933002: [extensions] Update content_capabilities whitelists (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2564
Patch Set: Created 5 years 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 | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 manifest keys implemented under src/extensions. 5 // This features file defines manifest keys implemented under src/extensions.
6 // See extensions/common/features/* to understand this file, in particular 6 // See extensions/common/features/* to understand this file, in particular
7 // feature.h, simple_feature.h, and base_feature_provider.h. 7 // feature.h, simple_feature.h, and base_feature_provider.h.
8 8
9 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash: 9 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash:
10 // 10 //
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 "extension_types": ["extension"], 94 "extension_types": ["extension"],
95 "whitelist": [ 95 "whitelist": [
96 "950D13BB9B4794F4CA2A68D3597E5DFAA47C88AE", // Drive 96 "950D13BB9B4794F4CA2A68D3597E5DFAA47C88AE", // Drive
97 "0EEB39B7A9A52CAAE6A072F83320435749B184A4", // http://crbug.com/481210 97 "0EEB39B7A9A52CAAE6A072F83320435749B184A4", // http://crbug.com/481210
98 "D4AF239830E1E038C9B60DA365B1EC9CB3BC5658", // http://crbug.com/481210 98 "D4AF239830E1E038C9B60DA365B1EC9CB3BC5658", // http://crbug.com/481210
99 "4895B1DBB92D52488F8D9FFDF9CC7B95C7258C9A", // http://crbug.com/505532 99 "4895B1DBB92D52488F8D9FFDF9CC7B95C7258C9A", // http://crbug.com/505532
100 "A3880AA78DB0004DE841CC980959D8443F3A8E40", // http://crbug.com/521615 100 "A3880AA78DB0004DE841CC980959D8443F3A8E40", // http://crbug.com/521615
101 "C8B53B3C2CC39CB504B19D990165684FF0CE880C" // http://crbug.com/521615 101 "C8B53B3C2CC39CB504B19D990165684FF0CE880C" // http://crbug.com/521615
102 ] 102 ]
103 }, { 103 }, {
104 "channel": "beta",
105 "extension_types": ["extension"],
106 "whitelist": [
107 "4895B1DBB92D52488F8D9FFDF9CC7B95C7258C9A", // https://crbug.com/570337
108 "A3880AA78DB0004DE841CC980959D8443F3A8E40", // https://crbug.com/570337
109 "C8B53B3C2CC39CB504B19D990165684FF0CE880C" // https://crbug.com/570337
110 ]
111 }, {
112 "channel": "dev",
113 "extension_types": ["extension"],
114 "whitelist": [
115 "4895B1DBB92D52488F8D9FFDF9CC7B95C7258C9A", // https://crbug.com/570337
116 "A3880AA78DB0004DE841CC980959D8443F3A8E40", // https://crbug.com/570337
117 "C8B53B3C2CC39CB504B19D990165684FF0CE880C" // https://crbug.com/570337
118 ]
119 }, {
104 "channel": "canary", 120 "channel": "canary",
105 "extension_types": ["extension"] 121 "extension_types": ["extension"]
106 }], 122 }],
107 "content_security_policy": { 123 "content_security_policy": {
108 "channel": "stable", 124 "channel": "stable",
109 // Platform apps have a restricted content security policy that cannot be 125 // Platform apps have a restricted content security policy that cannot be
110 // overriden (except for a whitelist of exceptions, see the 126 // overriden (except for a whitelist of exceptions, see the
111 // app.content_security_policy whitelist). 127 // app.content_security_policy whitelist).
112 "extension_types": ["extension", "legacy_packaged_app"] 128 "extension_types": ["extension", "legacy_packaged_app"]
113 }, 129 },
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 "extension_types": ["platform_app"], 322 "extension_types": ["platform_app"],
307 "location": "component" 323 "location": "component"
308 } 324 }
309 ], 325 ],
310 "webview": { 326 "webview": {
311 "channel": "stable", 327 "channel": "stable",
312 "extension_types": ["platform_app"], 328 "extension_types": ["platform_app"],
313 "min_manifest_version": 2 329 "min_manifest_version": 2
314 } 330 }
315 } 331 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698