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

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

Issue 178253007: Parse manifest file with app.service_worker.script. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Moved test utils out of base Created 6 years, 9 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 // 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 24 matching lines...) Expand all
35 "app.isolation": { 35 "app.isolation": {
36 "channel": "stable", 36 "channel": "stable",
37 // Platform apps always have isolated storage, thus they cannot specify it 37 // Platform apps always have isolated storage, thus they cannot specify it
38 // via the manifest. 38 // via the manifest.
39 "extension_types": ["legacy_packaged_app", "hosted_app"] 39 "extension_types": ["legacy_packaged_app", "hosted_app"]
40 }, 40 },
41 "app.launch": { 41 "app.launch": {
42 "channel": "stable", 42 "channel": "stable",
43 "extension_types": ["legacy_packaged_app", "hosted_app"] 43 "extension_types": ["legacy_packaged_app", "hosted_app"]
44 }, 44 },
45 "app.service_worker": {
46 "channel": "trunk",
47 "extension_types": ["platform_app"]
48 },
45 "author": { 49 "author": {
46 "channel": "stable", 50 "channel": "stable",
47 "extension_types": "all" 51 "extension_types": "all"
48 }, 52 },
49 "background": { 53 "background": {
50 "channel": "stable", 54 "channel": "stable",
51 "extension_types": [ 55 "extension_types": [
52 // Platform apps specify their background page via app.background. 56 // Platform apps specify their background page via app.background.
53 "extension", "legacy_packaged_app", "hosted_app" 57 "extension", "legacy_packaged_app", "hosted_app"
54 ] 58 ]
(...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after
429 "extension_types": ["platform_app"], 433 "extension_types": ["platform_app"],
430 "location": "component" 434 "location": "component"
431 } 435 }
432 ], 436 ],
433 "webview": { 437 "webview": {
434 "channel": "stable", 438 "channel": "stable",
435 "extension_types": ["platform_app"], 439 "extension_types": ["platform_app"],
436 "min_manifest_version": 2 440 "min_manifest_version": 2
437 } 441 }
438 } 442 }
OLDNEW
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | chrome/common/extensions/manifest_tests/extension_manifest_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698