Chromium Code Reviews| 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 24 matching lines...) Expand all Loading... | |
| 35 "app.isolation": { | 35 "app.isolation": { |
| 36 "channel": "stable", | 36 "channel": "stable", |
| 37 // Platform apps always have isolated storage, thus they cannot specify it | 37 // Platform apps always have isolated storage, thus they cannot specify it |
| 38 // via the manifest. | 38 // via the manifest. |
| 39 "extension_types": ["legacy_packaged_app", "hosted_app"] | 39 "extension_types": ["legacy_packaged_app", "hosted_app"] |
| 40 }, | 40 }, |
| 41 "app.launch": { | 41 "app.launch": { |
| 42 "channel": "stable", | 42 "channel": "stable", |
| 43 "extension_types": ["legacy_packaged_app", "hosted_app"] | 43 "extension_types": ["legacy_packaged_app", "hosted_app"] |
| 44 }, | 44 }, |
| 45 "app.service_worker": { | |
|
Jeffrey Yasskin
2014/02/28 01:54:37
Did we say something about defining this flag at t
scheib
2014/02/28 04:16:07
From the earlier email:
"""
On Tue, Feb 25, 2014 a
| |
| 46 "channel": "trunk", | |
| 47 "extension_types": ["platform_app"] | |
| 48 }, | |
| 45 "author": { | 49 "author": { |
| 46 "channel": "stable", | 50 "channel": "stable", |
| 47 "extension_types": "all" | 51 "extension_types": "all" |
| 48 }, | 52 }, |
| 49 "background": { | 53 "background": { |
| 50 "channel": "stable", | 54 "channel": "stable", |
| 51 "extension_types": [ | 55 "extension_types": [ |
| 52 // Platform apps specify their background page via app.background. | 56 // Platform apps specify their background page via app.background. |
| 53 "extension", "legacy_packaged_app", "hosted_app" | 57 "extension", "legacy_packaged_app", "hosted_app" |
| 54 ] | 58 ] |
| (...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 429 "extension_types": ["platform_app"], | 433 "extension_types": ["platform_app"], |
| 430 "location": "component" | 434 "location": "component" |
| 431 } | 435 } |
| 432 ], | 436 ], |
| 433 "webview": { | 437 "webview": { |
| 434 "channel": "stable", | 438 "channel": "stable", |
| 435 "extension_types": ["platform_app"], | 439 "extension_types": ["platform_app"], |
| 436 "min_manifest_version": 2 | 440 "min_manifest_version": 2 |
| 437 } | 441 } |
| 438 } | 442 } |
| OLD | NEW |