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

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

Issue 447783003: Remove service worker concepts from apps/extensions manifest parsing. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 3 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 // This features file defines manifest keys implemented under src/chrome. 5 // This features file defines manifest keys implemented under src/chrome.
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 16 matching lines...) Expand all
27 "app.isolation": { 27 "app.isolation": {
28 "channel": "stable", 28 "channel": "stable",
29 // Platform apps always have isolated storage, thus they cannot specify it 29 // Platform apps always have isolated storage, thus they cannot specify it
30 // via the manifest. 30 // via the manifest.
31 "extension_types": ["legacy_packaged_app", "hosted_app"] 31 "extension_types": ["legacy_packaged_app", "hosted_app"]
32 }, 32 },
33 "app.launch": { 33 "app.launch": {
34 "channel": "stable", 34 "channel": "stable",
35 "extension_types": ["legacy_packaged_app", "hosted_app"] 35 "extension_types": ["legacy_packaged_app", "hosted_app"]
36 }, 36 },
37 "app.service_worker": {
38 "channel": "trunk", // When changing update tests: http://crbug.com/353209
39 "extension_types": ["platform_app"]
40 },
41 "author": { 37 "author": {
42 "channel": "stable", 38 "channel": "stable",
43 "extension_types": "all" 39 "extension_types": "all"
44 }, 40 },
45 "automation": { 41 "automation": {
46 "channel": "trunk", 42 "channel": "trunk",
47 "extension_types": ["extension", "legacy_packaged_app"] 43 "extension_types": ["extension", "legacy_packaged_app"]
48 }, 44 },
49 "bluetooth": [{ 45 "bluetooth": [{
50 // Note: The "bluetooth" manifest permission is used by the 46 // Note: The "bluetooth" manifest permission is used by the
(...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after
403 }, 399 },
404 "url_handlers": { 400 "url_handlers": {
405 "channel": "stable", 401 "channel": "stable",
406 "extension_types": ["platform_app"] 402 "extension_types": ["platform_app"]
407 }, 403 },
408 "version": { 404 "version": {
409 "channel": "stable", 405 "channel": "stable",
410 "extension_types": "all" 406 "extension_types": "all"
411 } 407 }
412 } 408 }
OLDNEW
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | chrome/common/extensions/manifest_tests/extension_manifests_service_worker_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698