| 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 | 7 |
| 8 // See extensions/common/features/* to understand this file, in particular | 8 // See extensions/common/features/* to understand this file, in particular |
| 9 // feature.h, simple_feature.h, and base_feature_provider.h. | 9 // feature.h, simple_feature.h, and base_feature_provider.h. |
| 10 | 10 |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 { | 61 { |
| 62 "channel": "stable", | 62 "channel": "stable", |
| 63 "extension_types": ["extension"], | 63 "extension_types": ["extension"], |
| 64 "whitelist": [ | 64 "whitelist": [ |
| 65 "06BE211D5F014BAB34BC22D9DDA09C63A81D828E", // http://crbug.com/425539 | 65 "06BE211D5F014BAB34BC22D9DDA09C63A81D828E", // http://crbug.com/425539 |
| 66 "F94EE6AB36D6C6588670B2B01EB65212D9C64E33", | 66 "F94EE6AB36D6C6588670B2B01EB65212D9C64E33", |
| 67 "B9EF10DDFEA11EF77873CC5009809E5037FC4C7A" // http://crbug.com/435380 | 67 "B9EF10DDFEA11EF77873CC5009809E5037FC4C7A" // http://crbug.com/435380 |
| 68 ] | 68 ] |
| 69 } | 69 } |
| 70 ], | 70 ], |
| 71 "app.window.interceptAllKeys": { | |
| 72 "channel": "dev", | |
| 73 "extension_types": ["platform_app"] | |
| 74 }, | |
| 75 "app.window.shape": { | 71 "app.window.shape": { |
| 76 "channel": "stable", | 72 "channel": "stable", |
| 77 "extension_types": ["platform_app"] | 73 "extension_types": ["platform_app"] |
| 78 }, | 74 }, |
| 79 "app.window.ime": [ | 75 "app.window.ime": [ |
| 80 { | 76 { |
| 81 "channel": "stable", | 77 "channel": "stable", |
| 82 "extension_types": ["extension"], | 78 "extension_types": ["extension"], |
| 83 "platforms": ["chromeos"], | 79 "platforms": ["chromeos"], |
| 84 "whitelist": [ | 80 "whitelist": [ |
| (...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 482 }], | 478 }], |
| 483 "webRequest": { | 479 "webRequest": { |
| 484 "channel": "stable", | 480 "channel": "stable", |
| 485 "extension_types": ["extension", "legacy_packaged_app"] | 481 "extension_types": ["extension", "legacy_packaged_app"] |
| 486 }, | 482 }, |
| 487 "webRequestBlocking": { | 483 "webRequestBlocking": { |
| 488 "channel": "stable", | 484 "channel": "stable", |
| 489 "extension_types": ["extension", "legacy_packaged_app"] | 485 "extension_types": ["extension", "legacy_packaged_app"] |
| 490 } | 486 } |
| 491 } | 487 } |
| OLD | NEW |