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

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

Issue 22944002: Implementation of the "Redirect URLs to Packaged Apps" feature. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fully reverted extension_service.cc to original form Created 7 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 { 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 288 matching lines...) Expand 10 before | Expand all | Expand 10 after
299 "extension_types": ["theme"] 299 "extension_types": ["theme"]
300 }, 300 },
301 "tts_engine": { 301 "tts_engine": {
302 "channel": "stable", 302 "channel": "stable",
303 "extension_types": ["extension", "packaged_app"] 303 "extension_types": ["extension", "packaged_app"]
304 }, 304 },
305 "update_url": { 305 "update_url": {
306 "channel": "stable", 306 "channel": "stable",
307 "extension_types": "all" 307 "extension_types": "all"
308 }, 308 },
309 "url_handlers": {
310 "channel": "trunk",
311 "extension_types": ["platform_app"]
312 },
309 "version": { 313 "version": {
310 "channel": "stable", 314 "channel": "stable",
311 "extension_types": "all" 315 "extension_types": "all"
312 }, 316 },
313 "web_accessible_resources": { 317 "web_accessible_resources": {
314 "channel": "stable", 318 "channel": "stable",
315 "extension_types": [ 319 "extension_types": [
316 "extension", "packaged_app", "hosted_app" 320 "extension", "packaged_app", "hosted_app"
317 ] 321 ]
318 } 322 }
319 } 323 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698