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

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

Issue 2618493002: Chrome app manifest support for action handlers. (Closed)
Patch Set: Rebase Created 3 years, 11 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 // This features file defines manifest keys implemented under src/chrome. 5 // This features file defines manifest keys implemented under src/chrome.
6 // See chrome/common/extensions/api/_features.md to understand this file, as 6 // See chrome/common/extensions/api/_features.md to understand this file, as
7 // well as feature.h, simple_feature.h, and base_feature_provider.h. 7 // well as feature.h, simple_feature.h, and base_feature_provider.h.
8 8
9 { 9 {
10 "action_handlers": {
Daniel Erat 2017/01/12 23:55:03 move this down to keep the list alphabetized
michaelpg 2017/01/13 22:17:07 Does this have to be in //chrome/common/extensions
jdufault 2017/01/14 00:30:42 Done.
jdufault 2017/01/14 00:30:42 Done.
11 "channel": "stable",
12 "extension_types": ["platform_app"]
13 },
10 "about_page": { 14 "about_page": {
11 "channel": "stable", 15 "channel": "stable",
12 "extension_types": ["shared_module"] 16 "extension_types": ["shared_module"]
13 }, 17 },
14 "app.icon_color": { 18 "app.icon_color": {
15 "channel": "stable", 19 "channel": "stable",
16 "extension_types": ["hosted_app"] 20 "extension_types": ["hosted_app"]
17 }, 21 },
18 "app.linked_icons": { 22 "app.linked_icons": {
19 "channel": "dev", 23 "channel": "dev",
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 }, 251 },
248 "update_url": { 252 "update_url": {
249 "channel": "stable", 253 "channel": "stable",
250 "extension_types": "all" 254 "extension_types": "all"
251 }, 255 },
252 "url_handlers": { 256 "url_handlers": {
253 "channel": "stable", 257 "channel": "stable",
254 "extension_types": ["platform_app"] 258 "extension_types": ["platform_app"]
255 } 259 }
256 } 260 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698