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

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

Issue 10349015: Make platform apps get isolated storage by default. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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
« no previous file with comments | « chrome/browser/profiles/profile_impl.cc ('k') | chrome/common/extensions/extension.h » ('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 { 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 "app.launch": { 10 "app.launch": {
11 "channel": "stable", 11 "channel": "stable",
12 "extension_types": ["packaged_app", "hosted_app"] 12 "extension_types": ["packaged_app", "hosted_app"]
13 }, 13 },
14 "app.isolation": {
15 "channel": "stable",
16 // Platform apps always have isolated storage, thus they cannot specify it
17 // via the manifest.
18 "extension_types": ["packaged_app", "hosted_app"]
19 },
14 "background": { 20 "background": {
15 "channel": "stable", 21 "channel": "stable",
16 "extension_types": [ 22 "extension_types": [
17 "extension", "packaged_app", "hosted_app", "platform_app" 23 "extension", "packaged_app", "hosted_app", "platform_app"
18 ] 24 ]
19 }, 25 },
20 "background.persistent": { 26 "background.persistent": {
21 "channel": "dev", 27 "channel": "dev",
22 "extension_types": [ 28 "extension_types": [
23 "extension", "packaged_app", "platform_app" 29 "extension", "packaged_app", "platform_app"
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 "channel": "stable", 207 "channel": "stable",
202 "extension_types": "all" 208 "extension_types": "all"
203 }, 209 },
204 "web_accessible_resources": { 210 "web_accessible_resources": {
205 "channel": "stable", 211 "channel": "stable",
206 "extension_types": [ 212 "extension_types": [
207 "extension", "packaged_app", "hosted_app" 213 "extension", "packaged_app", "hosted_app"
208 ] 214 ]
209 } 215 }
210 } 216 }
OLDNEW
« no previous file with comments | « chrome/browser/profiles/profile_impl.cc ('k') | chrome/common/extensions/extension.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698