Chromium Code Reviews| 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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 218 "channel": "stable", | 218 "channel": "stable", |
| 219 "extension_types": [ | 219 "extension_types": [ |
| 220 "extension", "hosted_app", "legacy_packaged_app", "platform_app" | 220 "extension", "hosted_app", "legacy_packaged_app", "platform_app" |
| 221 ], | 221 ], |
| 222 "whitelist": [ | 222 "whitelist": [ |
| 223 "54ECAB4579BDE8FDAF9B29ED335F9946EE504A52", // Used in unit tests | 223 "54ECAB4579BDE8FDAF9B29ED335F9946EE504A52", // Used in unit tests |
| 224 "E24F1786D842E91E74C27929B0B3715A4689A473", // http://crbug.com/417494 | 224 "E24F1786D842E91E74C27929B0B3715A4689A473", // http://crbug.com/417494 |
| 225 "A28C9619C4C41306FA5236FB4D94DA812F504DE8" // http://crbug.com/429886 | 225 "A28C9619C4C41306FA5236FB4D94DA812F504DE8" // http://crbug.com/429886 |
| 226 ] | 226 ] |
| 227 }, | 227 }, |
| 228 "fileSystem": [{ | |
| 229 "channel": "stable", | |
| 230 "extension_types": ["platform_app"], | |
| 231 "default_parent": true | |
| 232 },{ | |
| 233 "channel": "stable", | |
| 234 "extension_types": ["extension"], | |
| 235 "whitelist": [ | |
| 236 "2FC374607C2DF285634B67C64A2E356C607091C3", // Quickoffice | |
| 237 "3727DD3E564B6055387425027AD74C58784ACC15", // Quickoffice internal | |
| 238 "12E618C3C6E97495AAECF2AC12DEB082353241C6", // QO component extension | |
| 239 "D5736E4B5CF695CB93A2FB57E4FDC6E5AFAB6FE2", // http://crbug.com/312900 | |
| 240 "D57DE394F36DC1C3220E7604C575D29C51A6C495", // http://crbug.com/319444 | |
| 241 "3F65507A3B39259B38C8173C6FFA3D12DF64CCE9", // http://crbug.com/371562 | |
| 242 "2B6C6A4A5940017146F3E58B7F90116206E84685", // http://crbug.com/642141 | |
| 243 "B6C2EFAB3EC3BF6EF03701408B6B09A67B2D0069", // http://crbug.com/642141 | |
| 244 "96FF2FFA5C9173C76D47184B3E86D267B37781DE", // http://crbug.com/642141 | |
| 245 "0136FCB13DB29FD5CD442F56E59E53B61F1DF96F" // http://crbug.com/642141 | |
| 246 ] | |
| 247 }], | |
| 248 "fileSystem.directory": { | |
| 249 "channel": "stable", | |
| 250 "extension_types": ["platform_app"] | |
|
michaelpg
2017/06/13 23:19:26
Devlin, why are these fields necessary when the de
Devlin
2017/06/14 14:56:18
They aren't. Kill them! :)
Optionally, you could
michaelpg
2017/06/26 18:07:19
Will do. There's enough custom stuff here that I'l
| |
| 251 }, | |
| 252 "fileSystem.retainEntries": { | |
| 253 "channel": "stable", | |
| 254 "extension_types": ["platform_app"] | |
| 255 }, | |
| 256 "fileSystem.write": [{ | |
| 257 "channel": "stable", | |
| 258 "extension_types": ["platform_app"] | |
|
Devlin
2017/06/14 14:56:18
note that this one *is* necessary, since otherwise
| |
| 259 },{ | |
| 260 "channel": "stable", | |
| 261 "extension_types": ["extension"], | |
| 262 "whitelist": [ | |
| 263 "2FC374607C2DF285634B67C64A2E356C607091C3", // Quickoffice | |
| 264 "3727DD3E564B6055387425027AD74C58784ACC15", // Quickoffice internal | |
| 265 "12E618C3C6E97495AAECF2AC12DEB082353241C6", // QO component extension | |
| 266 "D5736E4B5CF695CB93A2FB57E4FDC6E5AFAB6FE2", // http://crbug.com/312900 | |
| 267 "D57DE394F36DC1C3220E7604C575D29C51A6C495", // http://crbug.com/319444 | |
| 268 "3F65507A3B39259B38C8173C6FFA3D12DF64CCE9" // http://crbug.com/371562 | |
| 269 ] | |
| 270 }], | |
| 271 "fileSystem.requestFileSystem": { | |
| 272 "channel": "stable", | |
| 273 "extension_types": ["platform_app"], | |
| 274 "platforms": ["chromeos"] | |
| 275 }, | |
| 228 "hid": [ | 276 "hid": [ |
| 229 { | 277 { |
| 230 "channel": "stable", | 278 "channel": "stable", |
| 231 "extension_types": ["platform_app"] | 279 "extension_types": ["platform_app"] |
| 232 }, | 280 }, |
| 233 { | 281 { |
| 234 "channel": "stable", | 282 "channel": "stable", |
| 235 "extension_types": ["extension"], | 283 "extension_types": ["extension"], |
| 236 "whitelist": [ | 284 "whitelist": [ |
| 237 "496B6890097EB6E19809ADEADD095A8721FBB2E0", // FIDO U2F APIs | 285 "496B6890097EB6E19809ADEADD095A8721FBB2E0", // FIDO U2F APIs |
| (...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 609 }], | 657 }], |
| 610 "webRequest": { | 658 "webRequest": { |
| 611 "channel": "stable", | 659 "channel": "stable", |
| 612 "extension_types": ["extension", "legacy_packaged_app"] | 660 "extension_types": ["extension", "legacy_packaged_app"] |
| 613 }, | 661 }, |
| 614 "webRequestBlocking": { | 662 "webRequestBlocking": { |
| 615 "channel": "stable", | 663 "channel": "stable", |
| 616 "extension_types": ["extension", "legacy_packaged_app"] | 664 "extension_types": ["extension", "legacy_packaged_app"] |
| 617 } | 665 } |
| 618 } | 666 } |
| OLD | NEW |