| OLD | NEW |
| 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 "about_page": { | 10 "about_page": { |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 { | 138 { |
| 139 "channel": "stable", | 139 "channel": "stable", |
| 140 "extension_types": ["extension", "legacy_packaged_app"] | 140 "extension_types": ["extension", "legacy_packaged_app"] |
| 141 }, | 141 }, |
| 142 { | 142 { |
| 143 "channel": "stable", | 143 "channel": "stable", |
| 144 "extension_types": ["platform_app"], | 144 "extension_types": ["platform_app"], |
| 145 "location": "component" | 145 "location": "component" |
| 146 } | 146 } |
| 147 ], | 147 ], |
| 148 "file_system_provider_capabilities": { | 148 "file_system_provider_capabilities": [{ |
| 149 "channel": "stable", | 149 "channel": "stable", |
| 150 "extension_types": ["extension", "platform_app"] | 150 "extension_types": ["extension", "platform_app"] |
| 151 }, | 151 }, { |
| 152 "channel": "stable", |
| 153 "extension_types": ["legacy_packaged_app"], |
| 154 "platforms": ["chromeos"], |
| 155 "whitelist": [ |
| 156 "0EA6B717932AD64C469C1CCB6911457733295907", // http://crbug.com/673004 |
| 157 "58B0C2968C335964D5433E89CA4D86628A0E3D4B" // http://crbug.com/673004 |
| 158 ] |
| 159 }], |
| 152 "homepage_url": { | 160 "homepage_url": { |
| 153 "channel": "stable", | 161 "channel": "stable", |
| 154 "extension_types": ["extension", "legacy_packaged_app"] | 162 "extension_types": ["extension", "legacy_packaged_app"] |
| 155 }, | 163 }, |
| 156 "import": { | 164 "import": { |
| 157 "channel": "stable", | 165 "channel": "stable", |
| 158 "extension_types": "all" | 166 "extension_types": "all" |
| 159 }, | 167 }, |
| 160 "input_components": { | 168 "input_components": { |
| 161 "channel": "stable", | 169 "channel": "stable", |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 }, | 255 }, |
| 248 "update_url": { | 256 "update_url": { |
| 249 "channel": "stable", | 257 "channel": "stable", |
| 250 "extension_types": "all" | 258 "extension_types": "all" |
| 251 }, | 259 }, |
| 252 "url_handlers": { | 260 "url_handlers": { |
| 253 "channel": "stable", | 261 "channel": "stable", |
| 254 "extension_types": ["platform_app"] | 262 "extension_types": ["platform_app"] |
| 255 } | 263 } |
| 256 } | 264 } |
| OLD | NEW |