Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 "alpha": { | 5 "alpha": { |
| 6 "channel": "stable", | 6 "channel": "stable", |
| 7 "contexts": ["blessed_extension"], | 7 "contexts": ["blessed_extension"], |
| 8 "dependencies": ["permission:alpha"], | 8 "dependencies": ["permission:alpha"], |
| 9 "max_manifest_version": 1 | 9 "max_manifest_version": 1 |
| 10 }, | 10 }, |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 67 "dependencies": ["permission:complex.child"] | 67 "dependencies": ["permission:complex.child"] |
| 68 }, | 68 }, |
| 69 "allEnum": { | 69 "allEnum": { |
| 70 "channel": "beta", | 70 "channel": "beta", |
| 71 "extension_types": "all", | 71 "extension_types": "all", |
| 72 "contexts": "all" | 72 "contexts": "all" |
| 73 }, | 73 }, |
| 74 "uncompiled": { | 74 "uncompiled": { |
| 75 "contexts": ["blessed_extension"], | 75 "contexts": ["blessed_extension"], |
| 76 "nocompile": true | 76 "nocompile": true |
| 77 }, | |
| 78 "alias": { | |
| 79 "channel": "stable", | |
| 80 "contexts": ["blessed_extension"], | |
| 81 "source": "alias_source" | |
| 82 }, | |
| 83 "alias_source": { | |
| 84 "channel": "stable", | |
| 85 "contexts": ["blessed_extension"], | |
| 86 "alias": "alias" | |
| 87 }, | |
| 88 "complex_alias": [{ | |
| 89 "channel": "beta", | |
| 90 "contexts": ["blessed_extension"], | |
| 91 "source": "complex_alias_source" | |
| 92 }, { | |
| 93 "channel": "dev", | |
| 94 "contexts": ["webui"] | |
| 95 }], | |
| 96 "complex_alias_source": [{ | |
| 97 "channel": "beta", | |
| 98 "contexts": ["blessed_extension"], | |
| 99 "alias": "complex_alias" | |
| 100 }, { | |
| 101 "channel": "dev", | |
| 102 "contexts": ["webui"] | |
| 103 }], | |
| 104 "parent_source" : { | |
| 105 "channel": "beta", | |
| 106 "contexts": ["blessed_extension"], | |
| 107 "alias": "parent_source.alias" | |
| 108 }, | |
| 109 "parent_source.alias" : { | |
| 110 "channel": "beta", | |
| 111 "contexts": ["blessed_extension"], | |
| 112 "source": "parent_source" | |
|
Devlin
2016/11/23 15:56:14
What would this mean, for a child feature to be a
tbarzic
2016/11/23 20:16:41
OK, I guess I was testing too much things using th
| |
| 77 } | 113 } |
| 78 } | 114 } |
| OLD | NEW |