| 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 ], | 60 ], |
| 61 "min_manifest_version": 2 | 61 "min_manifest_version": 2 |
| 62 }, | 62 }, |
| 63 "background_page": { | 63 "background_page": { |
| 64 "channel": "stable", | 64 "channel": "stable", |
| 65 "extension_types": [ | 65 "extension_types": [ |
| 66 "extension", "legacy_packaged_app", "hosted_app" | 66 "extension", "legacy_packaged_app", "hosted_app" |
| 67 ], | 67 ], |
| 68 "max_manifest_version": 1 | 68 "max_manifest_version": 1 |
| 69 }, | 69 }, |
| 70 "bluetooth": { |
| 71 "channel": "dev", |
| 72 "extension_types": ["platform_app"] |
| 73 }, |
| 70 "browser_action": { | 74 "browser_action": { |
| 71 "channel": "stable", | 75 "channel": "stable", |
| 72 "extension_types": ["extension"] | 76 "extension_types": ["extension"] |
| 73 }, | 77 }, |
| 74 "chrome_settings_overrides": { | 78 "chrome_settings_overrides": { |
| 75 "channel": "dev", | 79 "channel": "dev", |
| 76 "extension_types": ["extension"] | 80 "extension_types": ["extension"] |
| 77 }, | 81 }, |
| 78 "chrome_url_overrides": { | 82 "chrome_url_overrides": { |
| 79 "channel": "stable", | 83 "channel": "stable", |
| (...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 397 "extension_types": [ | 401 "extension_types": [ |
| 398 "extension", "legacy_packaged_app", "hosted_app" | 402 "extension", "legacy_packaged_app", "hosted_app" |
| 399 ] | 403 ] |
| 400 }, | 404 }, |
| 401 "webview": { | 405 "webview": { |
| 402 "channel": "dev", | 406 "channel": "dev", |
| 403 "extension_types": ["platform_app"], | 407 "extension_types": ["platform_app"], |
| 404 "min_manifest_version": 2 | 408 "min_manifest_version": 2 |
| 405 } | 409 } |
| 406 } | 410 } |
| OLD | NEW |