| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // See c/c/e/features/* to understand this file, in particular feature.h, | 5 // See c/c/e/features/* to understand this file, in particular feature.h, |
| 6 // simple_feature.h, and base_feature_provider.h. | 6 // simple_feature.h, and base_feature_provider.h. |
| 7 | 7 |
| 8 { | 8 { |
| 9 "app": { | 9 "app": { |
| 10 "channel": "stable", | 10 "channel": "stable", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 "min_manifest_version": 2 | 65 "min_manifest_version": 2 |
| 66 }, | 66 }, |
| 67 "background_page": { | 67 "background_page": { |
| 68 "channel": "stable", | 68 "channel": "stable", |
| 69 "extension_types": [ | 69 "extension_types": [ |
| 70 "extension", "legacy_packaged_app", "hosted_app" | 70 "extension", "legacy_packaged_app", "hosted_app" |
| 71 ], | 71 ], |
| 72 "max_manifest_version": 1 | 72 "max_manifest_version": 1 |
| 73 }, | 73 }, |
| 74 "bluetooth": { | 74 "bluetooth": { |
| 75 // Note: The "bluetooth" manifest permission is used by the |
| 76 // chrome.bluetooth, chrome.bluetoothSocket and chrome.bluetoothLowEnergy |
| 77 // APIs. Split this property if the APIs get released at different dates. |
| 75 "channel": "dev", | 78 "channel": "dev", |
| 76 "extension_types": ["platform_app"] | 79 "extension_types": ["platform_app"] |
| 77 }, | 80 }, |
| 78 "browser_action": { | 81 "browser_action": { |
| 79 "channel": "stable", | 82 "channel": "stable", |
| 80 "extension_types": ["extension"] | 83 "extension_types": ["extension"] |
| 81 }, | 84 }, |
| 82 "chrome_settings_overrides": [{ | 85 "chrome_settings_overrides": [{ |
| 83 "channel": "stable", | 86 "channel": "stable", |
| 84 "extension_types": ["extension"], | 87 "extension_types": ["extension"], |
| (...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 451 "extension_types": ["platform_app"], | 454 "extension_types": ["platform_app"], |
| 452 "location": "component" | 455 "location": "component" |
| 453 } | 456 } |
| 454 ], | 457 ], |
| 455 "webview": { | 458 "webview": { |
| 456 "channel": "stable", | 459 "channel": "stable", |
| 457 "extension_types": ["platform_app"], | 460 "extension_types": ["platform_app"], |
| 458 "min_manifest_version": 2 | 461 "min_manifest_version": 2 |
| 459 } | 462 } |
| 460 } | 463 } |
| OLD | NEW |