| 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 permissions for extension APIs implemented | 5 // This features file defines permissions for extension APIs implemented |
| 6 // under src/chrome. | 6 // under src/chrome. |
| 7 // See extensions/common/features/* to understand this file, in particular | 7 // See extensions/common/features/* to understand this file, in particular |
| 8 // feature.h, simple_feature.h, and base_feature_provider.h. | 8 // feature.h, simple_feature.h, and base_feature_provider.h. |
| 9 | 9 |
| 10 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash: | 10 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash: |
| (...skipping 515 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 526 "location": "component" | 526 "location": "component" |
| 527 }, | 527 }, |
| 528 "idltest": { | 528 "idltest": { |
| 529 "channel": "trunk", | 529 "channel": "trunk", |
| 530 "extension_types": ["extension"] | 530 "extension_types": ["extension"] |
| 531 }, | 531 }, |
| 532 "idle": { | 532 "idle": { |
| 533 "channel": "stable", | 533 "channel": "stable", |
| 534 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] | 534 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] |
| 535 }, | 535 }, |
| 536 "infobars": { | 536 "infobars": [ |
| 537 "channel": "dev", | 537 { |
| 538 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] | 538 "channel": "dev", |
| 539 }, | 539 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] |
| 540 }, |
| 541 { |
| 542 "channel": "stable", |
| 543 "extension_types": ["extension"], |
| 544 "whitelist": [ |
| 545 "496B6890097EB6E19809ADEADD095A8721FBB2E0" // crbug.com/415852 |
| 546 ] |
| 547 }, |
| 548 { |
| 549 "channel": "stable", |
| 550 "extension_types": ["extension"], |
| 551 "whitelist": [ |
| 552 "E24F1786D842E91E74C27929B0B3715A4689A473" // crbug.com/415852 |
| 553 ], |
| 554 "location": "component" |
| 555 } |
| 556 ], |
| 540 "input": { | 557 "input": { |
| 541 "channel": "stable", | 558 "channel": "stable", |
| 542 "extension_types": ["extension", "legacy_packaged_app"], | 559 "extension_types": ["extension", "legacy_packaged_app"], |
| 543 // TODO(kalman): Um what does this inply? | 560 // TODO(kalman): Um what does this inply? |
| 544 "inplies_full_url_access": true, | 561 "inplies_full_url_access": true, |
| 545 "platforms": ["chromeos"] | 562 "platforms": ["chromeos"] |
| 546 }, | 563 }, |
| 547 "inputMethodPrivate": [{ | 564 "inputMethodPrivate": [{ |
| 548 "channel": "stable", | 565 "channel": "stable", |
| 549 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], | 566 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], |
| (...skipping 489 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1039 }, | 1056 }, |
| 1040 "webRequest": { | 1057 "webRequest": { |
| 1041 "channel": "stable", | 1058 "channel": "stable", |
| 1042 "extension_types": ["extension", "legacy_packaged_app"] | 1059 "extension_types": ["extension", "legacy_packaged_app"] |
| 1043 }, | 1060 }, |
| 1044 "webRequestBlocking": { | 1061 "webRequestBlocking": { |
| 1045 "channel": "stable", | 1062 "channel": "stable", |
| 1046 "extension_types": ["extension", "legacy_packaged_app"] | 1063 "extension_types": ["extension", "legacy_packaged_app"] |
| 1047 } | 1064 } |
| 1048 } | 1065 } |
| OLD | NEW |