| 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 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 { | 287 { |
| 288 "channel": "stable", | 288 "channel": "stable", |
| 289 "extension_types": ["extension"], | 289 "extension_types": ["extension"], |
| 290 "whitelist": [ | 290 "whitelist": [ |
| 291 // http://crbug.com/292856 | 291 // http://crbug.com/292856 |
| 292 "3F50C3A83839D9C76334BCE81CDEC06174F266AF", | 292 "3F50C3A83839D9C76334BCE81CDEC06174F266AF", |
| 293 "09FDCB5851B8F3378DB630D06E316076E89C95A6", | 293 "09FDCB5851B8F3378DB630D06E316076E89C95A6", |
| 294 "A434B90223C3C52F2B69DB494736B63C612C774D" | 294 "A434B90223C3C52F2B69DB494736B63C612C774D" |
| 295 ] | 295 ] |
| 296 } | 296 } |
| 297 ], |
| 298 "webview": [ |
| 299 { |
| 300 "channel": "stable", |
| 301 "extension_types": ["platform_app"] |
| 302 }, |
| 303 { |
| 304 // General support for webview in component extensions still in progress. |
| 305 // Only allowed for whitelisted extensions until all the caveats are |
| 306 // addressed. Tracked in crbug/285151. |
| 307 "channel": "stable", |
| 308 "extension_types": ["extension"], |
| 309 "location": "component", |
| 310 "whitelist": [ |
| 311 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension |
| 312 ] |
| 313 } |
| 297 ] | 314 ] |
| 298 } | 315 } |
| OLD | NEW |