| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 permissions for extension APIs implemented | 5 // This features file defines permissions for extension APIs implemented |
| 6 // under src/extensions. | 6 // under src/extensions. |
| 7 // See chrome/common/extensions/api/_features.md to understand this file, as | 7 // See chrome/common/extensions/api/_features.md to understand this file, as |
| 8 // well as feature.h, simple_feature.h, and feature_provider.h. | 8 // well as feature.h, simple_feature.h, and feature_provider.h. |
| 9 | 9 |
| 10 // If you add a new platform_app permission please update the "stubs_app" test: | 10 // If you add a new platform_app permission please update the "stubs_app" test: |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 "9448CAB302F268FB4917D06F70703893DCDA26C4", // Cast Test Extension | 156 "9448CAB302F268FB4917D06F70703893DCDA26C4", // Cast Test Extension |
| 157 "63ED55E43214C211F82122ED56407FF1A807F2A3", // Media Router Dev | 157 "63ED55E43214C211F82122ED56407FF1A807F2A3", // Media Router Dev |
| 158 "226CF815E39A363090A1E547D53063472B8279FA" // Media Router Stable | 158 "226CF815E39A363090A1E547D53063472B8279FA" // Media Router Stable |
| 159 ] | 159 ] |
| 160 }, | 160 }, |
| 161 "clipboard": { | 161 "clipboard": { |
| 162 "channel": "dev", | 162 "channel": "dev", |
| 163 "extension_types": ["platform_app"], | 163 "extension_types": ["platform_app"], |
| 164 "platforms": ["chromeos"] | 164 "platforms": ["chromeos"] |
| 165 }, | 165 }, |
| 166 "declarativeNetRequest" : { |
| 167 "channel" : "trunk", |
| 168 // TODO legacy packaged app vs platform app vs hosted_app. |
| 169 "extension_types": ["extension", "legacy_packaged_app"], |
| 170 "min_manifest_version" : 2 |
| 171 }, |
| 166 "declarativeWebRequest": { | 172 "declarativeWebRequest": { |
| 167 "channel": "beta", | 173 "channel": "beta", |
| 168 "extension_types": ["extension", "legacy_packaged_app"] | 174 "extension_types": ["extension", "legacy_packaged_app"] |
| 169 }, | 175 }, |
| 170 "diagnostics": [ | 176 "diagnostics": [ |
| 171 { | 177 { |
| 172 "channel": "dev", | 178 "channel": "dev", |
| 173 "extension_types": ["platform_app"] | 179 "extension_types": ["platform_app"] |
| 174 }, | 180 }, |
| 175 { | 181 { |
| (...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 609 }], | 615 }], |
| 610 "webRequest": { | 616 "webRequest": { |
| 611 "channel": "stable", | 617 "channel": "stable", |
| 612 "extension_types": ["extension", "legacy_packaged_app"] | 618 "extension_types": ["extension", "legacy_packaged_app"] |
| 613 }, | 619 }, |
| 614 "webRequestBlocking": { | 620 "webRequestBlocking": { |
| 615 "channel": "stable", | 621 "channel": "stable", |
| 616 "extension_types": ["extension", "legacy_packaged_app"] | 622 "extension_types": ["extension", "legacy_packaged_app"] |
| 617 } | 623 } |
| 618 } | 624 } |
| OLD | NEW |