| 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 manifest keys implemented under src/extensions. | 5 // This features file defines manifest keys implemented under src/extensions. |
| 6 // See chrome/common/extensions/api/_features.md to understand this file, as | 6 // See chrome/common/extensions/api/_features.md to understand this file, as |
| 7 // well as feature.h, simple_feature.h, and feature_provider.h. | 7 // well as feature.h, simple_feature.h, and feature_provider.h. |
| 8 | 8 |
| 9 { | 9 { |
| 10 "action_handlers": { | 10 "action_handlers": { |
| (...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 325 "extension_types": [ | 325 "extension_types": [ |
| 326 "extension", "legacy_packaged_app", "hosted_app" | 326 "extension", "legacy_packaged_app", "hosted_app" |
| 327 ] | 327 ] |
| 328 }, | 328 }, |
| 329 { | 329 { |
| 330 "channel": "stable", | 330 "channel": "stable", |
| 331 "extension_types": ["platform_app"], | 331 "extension_types": ["platform_app"], |
| 332 "location": "component" | 332 "location": "component" |
| 333 } | 333 } |
| 334 ], | 334 ], |
| 335 "webview": { | 335 "webview": [ |
| 336 "channel": "stable", | 336 { |
| 337 "extension_types": ["platform_app"], | 337 "channel": "stable", |
| 338 "min_manifest_version": 2 | 338 "extension_types": [ "platform_app" ], |
| 339 } | 339 "min_manifest_version": 2 |
| 340 }, |
| 341 { |
| 342 "channel": "stable", |
| 343 "extension_types": [ "extension" ], |
| 344 "whitelist": [ |
| 345 // Chrome sign-in extension needs to load web accessibile resources |
| 346 // at the end of the sign-in flow. |
| 347 "D519188F86D9ACCEE0412007B227D9936EB9676B" // http://crbug.com/709117 |
| 348 ] |
| 349 } |
| 350 ] |
| 340 } | 351 } |
| OLD | NEW |