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

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

Issue 12381035: Move Mime type handling to streamsPrivate API, so that it works on Desktop Chrome. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix base files Created 7 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
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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 ] 174 ]
175 }, 175 },
176 "key": { 176 "key": {
177 "channel": "stable", 177 "channel": "stable",
178 "extension_types": "all" 178 "extension_types": "all"
179 }, 179 },
180 "manifest_version": { 180 "manifest_version": {
181 "channel": "stable", 181 "channel": "stable",
182 "extension_types": "all" 182 "extension_types": "all"
183 }, 183 },
184 "mime_types": {
185 "channel": "stable",
186 "extension_types": [ "extension", "packaged_app", "platform_app" ]
Matt Perry 2013/03/01 22:15:16 whitelist here too
Zachary Kuznia 2013/03/04 06:09:43 Done.
187 },
184 "minimum_chrome_version": { 188 "minimum_chrome_version": {
185 "channel": "stable", 189 "channel": "stable",
186 "extension_types": [ 190 "extension_types": [
187 "extension", "packaged_app", "hosted_app", "platform_app" 191 "extension", "packaged_app", "hosted_app", "platform_app"
188 ] 192 ]
189 }, 193 },
190 "nacl_modules": { 194 "nacl_modules": {
191 "channel": "stable", 195 "channel": "stable",
192 "extension_types": [ 196 "extension_types": [
193 "extension", "packaged_app", "hosted_app", "platform_app" 197 "extension", "packaged_app", "hosted_app", "platform_app"
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
289 "channel": "stable", 293 "channel": "stable",
290 "extension_types": "all" 294 "extension_types": "all"
291 }, 295 },
292 "web_accessible_resources": { 296 "web_accessible_resources": {
293 "channel": "stable", 297 "channel": "stable",
294 "extension_types": [ 298 "extension_types": [
295 "extension", "packaged_app", "hosted_app" 299 "extension", "packaged_app", "hosted_app"
296 ] 300 ]
297 } 301 }
298 } 302 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698