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

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

Issue 11360026: Add the "file_handlers" manifest key for platform apps to replace "intents". (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix tests Created 8 years, 1 month 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_tests.isolate ('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 // 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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 }, 112 },
113 "display_in_launcher": { 113 "display_in_launcher": {
114 "channel": "stable", 114 "channel": "stable",
115 "extension_types": ["packaged_app", "platform_app"], 115 "extension_types": ["packaged_app", "platform_app"],
116 "location": "component" 116 "location": "component"
117 }, 117 },
118 "file_browser_handlers": { 118 "file_browser_handlers": {
119 "channel": "stable", 119 "channel": "stable",
120 "extension_types": ["extension", "packaged_app"] 120 "extension_types": ["extension", "packaged_app"]
121 }, 121 },
122 "file_handlers": {
123 "channel": "stable",
124 "extension_types": ["platform_app"]
125 },
122 "homepage_url": { 126 "homepage_url": {
123 "channel": "stable", 127 "channel": "stable",
124 "extension_types": ["extension", "packaged_app"] 128 "extension_types": ["extension", "packaged_app"]
125 }, 129 },
126 "icons": { 130 "icons": {
127 "channel": "stable", 131 "channel": "stable",
128 "extension_types": "all" 132 "extension_types": "all"
129 }, 133 },
130 "incognito": { 134 "incognito": {
131 "channel": "stable", 135 "channel": "stable",
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 "channel": "stable", 253 "channel": "stable",
250 "extension_types": "all" 254 "extension_types": "all"
251 }, 255 },
252 "web_accessible_resources": { 256 "web_accessible_resources": {
253 "channel": "stable", 257 "channel": "stable",
254 "extension_types": [ 258 "extension_types": [
255 "extension", "packaged_app", "hosted_app" 259 "extension", "packaged_app", "hosted_app"
256 ] 260 ]
257 } 261 }
258 } 262 }
OLDNEW
« no previous file with comments | « chrome/browser_tests.isolate ('k') | chrome/common/extensions/extension.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698