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

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: 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
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 270 matching lines...) Expand 10 before | Expand all | Expand 10 after
281 "offline_enabled": { 281 "offline_enabled": {
282 "channel": "stable", 282 "channel": "stable",
283 "extension_types": [ 283 "extension_types": [
284 "extension", "legacy_packaged_app", "hosted_app", "platform_app" 284 "extension", "legacy_packaged_app", "hosted_app", "platform_app"
285 ] 285 ]
286 }, 286 },
287 "options_ui": { 287 "options_ui": {
288 "channel": "stable", 288 "channel": "stable",
289 "extension_types": ["extension", "legacy_packaged_app"] 289 "extension_types": ["extension", "legacy_packaged_app"]
290 }, 290 },
291 "required_platform_version": {
asargent_no_longer_on_chrome 2016/01/19 22:11:00 I don't think this is a feature we'd ever consider
xiyuan 2016/01/19 23:40:52 Done.
292 "channel": "stable",
asargent_no_longer_on_chrome 2016/01/19 22:11:00 Please set channel to canary or dev until you have
xiyuan 2016/01/19 23:40:52 Done.
293 "extension_types": ["platform_app"]
294 },
291 "sandbox": { 295 "sandbox": {
292 "channel": "stable", 296 "channel": "stable",
293 "extension_types": [ 297 "extension_types": [
294 "extension", "platform_app", "legacy_packaged_app" 298 "extension", "platform_app", "legacy_packaged_app"
295 ], 299 ],
296 "min_manifest_version": 2 300 "min_manifest_version": 2
297 }, 301 },
298 "sockets": { 302 "sockets": {
299 "channel": "stable", 303 "channel": "stable",
300 "extension_types": ["platform_app"] 304 "extension_types": ["platform_app"]
(...skipping 22 matching lines...) Expand all
323 "extension_types": ["platform_app"], 327 "extension_types": ["platform_app"],
324 "location": "component" 328 "location": "component"
325 } 329 }
326 ], 330 ],
327 "webview": { 331 "webview": {
328 "channel": "stable", 332 "channel": "stable",
329 "extension_types": ["platform_app"], 333 "extension_types": ["platform_app"],
330 "min_manifest_version": 2 334 "min_manifest_version": 2
331 } 335 }
332 } 336 }
OLDNEW
« no previous file with comments | « no previous file | extensions/common/manifest_constants.h » ('j') | extensions/common/manifest_handlers/kiosk_mode_info.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698