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

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

Issue 14587009: Added a PolicyManifestHandler. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: actually upload changes Created 7 years, 7 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
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 { 5 {
6 "app": { 6 "app": {
7 "channel": "stable", 7 "channel": "stable",
8 "extension_types": ["packaged_app", "hosted_app", "platform_app"] 8 "extension_types": ["packaged_app", "hosted_app", "platform_app"]
9 }, 9 },
10 // The default platform app CSP can only be overridden by whitelisted apps. 10 // The default platform app CSP can only be overridden by whitelisted apps.
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 "extension_types": ["extension"] 305 "extension_types": ["extension"]
306 }, 306 },
307 "signature": { 307 "signature": {
308 "channel": "stable", 308 "channel": "stable",
309 "extension_types": "all" 309 "extension_types": "all"
310 }, 310 },
311 "spellcheck": { 311 "spellcheck": {
312 "channel": "dev", 312 "channel": "dev",
313 "extension_types": ["extension"] 313 "extension_types": ["extension"]
314 }, 314 },
315 "storage": {
316 "channel": "dev",
317 "extension_types": "all",
318 "min_manifest_version": 2
319 },
320 "storage.managed_schema": {
321 "channel": "dev",
322 "extension_types": "all",
323 "min_manifest_version": 2
324 },
315 "system_indicator": { 325 "system_indicator": {
316 "channel": "dev", 326 "channel": "dev",
317 "extension_types": ["extension", "packaged_app", "platform_app"] 327 "extension_types": ["extension", "packaged_app", "platform_app"]
318 }, 328 },
319 "theme": { 329 "theme": {
320 "channel": "stable", 330 "channel": "stable",
321 "extension_types": ["theme"] 331 "extension_types": ["theme"]
322 }, 332 },
323 "tts_engine": { 333 "tts_engine": {
324 "channel": "stable", 334 "channel": "stable",
325 "extension_types": ["extension", "packaged_app"] 335 "extension_types": ["extension", "packaged_app"]
326 }, 336 },
327 "update_url": { 337 "update_url": {
328 "channel": "stable", 338 "channel": "stable",
329 "extension_types": "all" 339 "extension_types": "all"
330 }, 340 },
331 "version": { 341 "version": {
332 "channel": "stable", 342 "channel": "stable",
333 "extension_types": "all" 343 "extension_types": "all"
334 }, 344 },
335 "web_accessible_resources": { 345 "web_accessible_resources": {
336 "channel": "stable", 346 "channel": "stable",
337 "extension_types": [ 347 "extension_types": [
338 "extension", "packaged_app", "hosted_app" 348 "extension", "packaged_app", "hosted_app"
339 ] 349 ]
340 } 350 }
341 } 351 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698