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 both | 75 // Note: The "bluetooth" manifest permission is used by the |
76 // chrome.bluetooth and chrome.bluetoothLowEnergy APIs. Split this property | 76 // chrome.bluetooth, chrome.bluetoothSocket and chrome.bluetoothLowEnergy |
77 // if the two APIs get released at different dates. | 77 // APIs. Split this property if the APIs get released at different dates. |
78 "channel": "dev", | 78 "channel": "dev", |
79 "extension_types": ["platform_app"] | 79 "extension_types": ["platform_app"] |
80 }, | 80 }, |
81 "browser_action": { | 81 "browser_action": { |
82 "channel": "stable", | 82 "channel": "stable", |
83 "extension_types": ["extension"] | 83 "extension_types": ["extension"] |
84 }, | 84 }, |
85 "chrome_settings_overrides": [{ | 85 "chrome_settings_overrides": [{ |
86 "channel": "stable", | 86 "channel": "stable", |
87 "extension_types": ["extension"], | 87 "extension_types": ["extension"], |
(...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
454 "extension_types": ["platform_app"], | 454 "extension_types": ["platform_app"], |
455 "location": "component" | 455 "location": "component" |
456 } | 456 } |
457 ], | 457 ], |
458 "webview": { | 458 "webview": { |
459 "channel": "stable", | 459 "channel": "stable", |
460 "extension_types": ["platform_app"], | 460 "extension_types": ["platform_app"], |
461 "min_manifest_version": 2 | 461 "min_manifest_version": 2 |
462 } | 462 } |
463 } | 463 } |
OLD | NEW |