OLD | NEW |
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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 "1C93BD3CF875F4A73C0B2A163BB8FBDA8B8B3D80", // http://crbug.com/387169 | 85 "1C93BD3CF875F4A73C0B2A163BB8FBDA8B8B3D80", // http://crbug.com/387169 |
86 "A3BC37E2148AC4E99BE4B16AF9D42DD1E592BBBE", // http://crbug.com/387169 | 86 "A3BC37E2148AC4E99BE4B16AF9D42DD1E592BBBE", // http://crbug.com/387169 |
87 "E703483CEF33DEC18B4B6DD84B5C776FB9182BDB", // http://crbug.com/387169 | 87 "E703483CEF33DEC18B4B6DD84B5C776FB9182BDB", // http://crbug.com/387169 |
88 "307E96539209F95A1A8740C713E6998A73657D96", // http://crbug.com/387169 | 88 "307E96539209F95A1A8740C713E6998A73657D96", // http://crbug.com/387169 |
89 "4F25792AF1AA7483936DE29C07806F203C7170A0", // http://crbug.com/407693 | 89 "4F25792AF1AA7483936DE29C07806F203C7170A0", // http://crbug.com/407693 |
90 "BD8781D757D830FC2E85470A1B6E8A718B7EE0D9", // http://crbug.com/407693 | 90 "BD8781D757D830FC2E85470A1B6E8A718B7EE0D9", // http://crbug.com/407693 |
91 "4AC2B6C63C6480D150DFDA13E4A5956EB1D0DDBB", // http://crbug.com/407693 | 91 "4AC2B6C63C6480D150DFDA13E4A5956EB1D0DDBB", // http://crbug.com/407693 |
92 "81986D4F846CEDDDB962643FA501D1780DD441BB" // http://crbug.com/407693 | 92 "81986D4F846CEDDDB962643FA501D1780DD441BB" // http://crbug.com/407693 |
93 ] | 93 ] |
94 }, | 94 }, |
| 95 "declarativeWebRequest": [ |
| 96 { |
| 97 "channel": "beta", |
| 98 "extension_types": ["extension", "legacy_packaged_app"] |
| 99 } |
| 100 ], |
95 "dns": [ | 101 "dns": [ |
96 { | 102 { |
97 "channel": "dev", | 103 "channel": "dev", |
98 "extension_types": ["extension", "platform_app"] | 104 "extension_types": ["extension", "platform_app"] |
99 }, | 105 }, |
100 { | 106 { |
101 "channel": "stable", | 107 "channel": "stable", |
102 "extension_types": ["extension", "platform_app"], | 108 "extension_types": ["extension", "platform_app"], |
103 "whitelist": [ | 109 "whitelist": [ |
104 "7AE714FFD394E073F0294CFA134C9F91DB5FBAA4", // CCD Development | 110 "7AE714FFD394E073F0294CFA134C9F91DB5FBAA4", // CCD Development |
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
286 // General support for webview in component extensions still in progress. | 292 // General support for webview in component extensions still in progress. |
287 // Only allowed for whitelisted extensions until all the caveats are | 293 // Only allowed for whitelisted extensions until all the caveats are |
288 // addressed. Tracked in crbug/285151. | 294 // addressed. Tracked in crbug/285151. |
289 "channel": "stable", | 295 "channel": "stable", |
290 "extension_types": ["extension"], | 296 "extension_types": ["extension"], |
291 "location": "component", | 297 "location": "component", |
292 "whitelist": [ | 298 "whitelist": [ |
293 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension | 299 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension |
294 ] | 300 ] |
295 } | 301 } |
| 302 ], |
| 303 "webRequest": [ |
| 304 { |
| 305 "channel": "stable", |
| 306 "extension_types": ["extension", "legacy_packaged_app"] |
| 307 } |
| 308 ], |
| 309 "webRequestBlocking": [ |
| 310 { |
| 311 "channel": "stable", |
| 312 "extension_types": ["extension", "legacy_packaged_app"] |
| 313 } |
296 ] | 314 ] |
297 } | 315 } |
OLD | NEW |