Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Side by Side Diff: tools/json_schema_compiler/test/features_test.json

Issue 2494653005: Support API aliases (Closed)
Patch Set: Fix issue with child features not being able to override parent shared values Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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.child" : {
110 "channel": "beta",
111 "contexts": ["blessed_extension"]
112 },
113 "parent_source.child_source" : {
Devlin 2016/11/28 20:42:22 Wild. I'm not entirely sure we want to use this,
tbarzic 2016/11/28 21:43:52 Yeah, I was mostly concerned that this might be ne
114 "channel": "beta",
115 "contexts": ["blessed_extension"],
116 "alias": "parent_source_child_alias"
117 },
118 "parent_source_alias": {
119 "channel": "beta",
120 "contexts": ["blessed_extension"],
121 "source": "parent_source"
122 },
123 "parent_source_child_alias": {
124 "channel": "beta",
125 "contexts": ["blessed_extension"],
126 "source": "parent_source.child_source"
127 },
128 "alias_parent": {
129 "channel": "beta",
130 "contexts": ["blessed_extension"]
131 },
132 "alias_parent.child": {
133 "channel": "beta",
134 "contexts": ["blessed_extension"],
135 "source": "child_source"
136 },
137 "child_source": {
138 "channel": "beta",
139 "contexts": ["blessed_extension"],
140 "alias": "alias_parent.child"
77 } 141 }
78 } 142 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698