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

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

Issue 23604068: Add "kiosk_only" manifest attribute for platform apps. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed .crx binary Created 7 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « chrome/chrome_common.gypi ('k') | chrome/common/extensions/chrome_manifest_handlers.cc » ('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 (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 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 "key": { 197 "key": {
198 "channel": "stable", 198 "channel": "stable",
199 "extension_types": "all" 199 "extension_types": "all"
200 }, 200 },
201 "kiosk_enabled": { 201 "kiosk_enabled": {
202 "channel": "stable", 202 "channel": "stable",
203 "extension_types": [ 203 "extension_types": [
204 "platform_app" 204 "platform_app"
205 ] 205 ]
206 }, 206 },
207 "kiosk_only": {
208 "channel": "dev",
209 "extension_types": [
210 "platform_app"
211 ]
212 },
207 "manifest_version": { 213 "manifest_version": {
208 "channel": "stable", 214 "channel": "stable",
209 "extension_types": "all" 215 "extension_types": "all"
210 }, 216 },
211 "media_galleries_handlers": { 217 "media_galleries_handlers": {
212 "channel": "dev", 218 "channel": "dev",
213 "extension_types": ["platform_app"] 219 "extension_types": ["platform_app"]
214 }, 220 },
215 "mime_types": { 221 "mime_types": {
216 "channel": "stable", 222 "channel": "stable",
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
369 "channel": "stable", 375 "channel": "stable",
370 "extension_types": "all" 376 "extension_types": "all"
371 }, 377 },
372 "web_accessible_resources": { 378 "web_accessible_resources": {
373 "channel": "stable", 379 "channel": "stable",
374 "extension_types": [ 380 "extension_types": [
375 "extension", "legacy_packaged_app", "hosted_app" 381 "extension", "legacy_packaged_app", "hosted_app"
376 ] 382 ]
377 } 383 }
378 } 384 }
OLDNEW
« no previous file with comments | « chrome/chrome_common.gypi ('k') | chrome/common/extensions/chrome_manifest_handlers.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698