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

Side by Side Diff: extensions/common/api/_manifest_features.json

Issue 1595483004: kiosk: Add kiosk.required_platform_version manifest key (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: put required_platform_version under kiosk and target dev channel Created 4 years, 11 months 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
« no previous file with comments | « no previous file | extensions/common/manifest_constants.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 // This features file defines manifest keys implemented under src/extensions. 5 // This features file defines manifest keys implemented under src/extensions.
6 // See extensions/common/features/* to understand this file, in particular 6 // See extensions/common/features/* to understand this file, in particular
7 // feature.h, simple_feature.h, and base_feature_provider.h. 7 // feature.h, simple_feature.h, and base_feature_provider.h.
8 8
9 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash: 9 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash:
10 // 10 //
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 { 175 {
176 "channel": "stable", 176 "channel": "stable",
177 "extension_types": ["platform_app"], 177 "extension_types": ["platform_app"],
178 "location": "component" 178 "location": "component"
179 } 179 }
180 ], 180 ],
181 "key": { 181 "key": {
182 "channel": "stable", 182 "channel": "stable",
183 "extension_types": "all" 183 "extension_types": "all"
184 }, 184 },
185 "kiosk": {
186 "channel": "dev",
187 "extension_types": ["platform_app"]
188 },
189 "kiosk.required_platform_version": {
190 "channel": "dev",
191 "extension_types": ["platform_app"]
192 },
185 "kiosk_enabled": { 193 "kiosk_enabled": {
186 "channel": "stable", 194 "channel": "stable",
187 "extension_types": [ 195 "extension_types": [
188 "platform_app" 196 "platform_app"
189 ] 197 ]
190 }, 198 },
191 "kiosk_only": { 199 "kiosk_only": {
192 "channel": "stable", 200 "channel": "stable",
193 "extension_types": [ 201 "extension_types": [
194 "platform_app" 202 "platform_app"
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
323 "extension_types": ["platform_app"], 331 "extension_types": ["platform_app"],
324 "location": "component" 332 "location": "component"
325 } 333 }
326 ], 334 ],
327 "webview": { 335 "webview": {
328 "channel": "stable", 336 "channel": "stable",
329 "extension_types": ["platform_app"], 337 "extension_types": ["platform_app"],
330 "min_manifest_version": 2 338 "min_manifest_version": 2
331 } 339 }
332 } 340 }
OLDNEW
« no previous file with comments | « no previous file | extensions/common/manifest_constants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698