| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 { | 56 { |
| 57 "channel": "stable", | 57 "channel": "stable", |
| 58 "extension_types": ["extension"], | 58 "extension_types": ["extension"], |
| 59 "whitelist": [ | 59 "whitelist": [ |
| 60 "06BE211D5F014BAB34BC22D9DDA09C63A81D828E", // http://crbug.com/425539 | 60 "06BE211D5F014BAB34BC22D9DDA09C63A81D828E", // http://crbug.com/425539 |
| 61 "F94EE6AB36D6C6588670B2B01EB65212D9C64E33", | 61 "F94EE6AB36D6C6588670B2B01EB65212D9C64E33", |
| 62 "B9EF10DDFEA11EF77873CC5009809E5037FC4C7A" // http://crbug.com/435380 | 62 "B9EF10DDFEA11EF77873CC5009809E5037FC4C7A" // http://crbug.com/435380 |
| 63 ] | 63 ] |
| 64 } | 64 } |
| 65 ], | 65 ], |
| 66 "app.window.interceptAllKeys": { |
| 67 "channel": "dev", |
| 68 "extension_types": ["platform_app"] |
| 69 }, |
| 66 "app.window.shape": { | 70 "app.window.shape": { |
| 67 "channel": "stable", | 71 "channel": "stable", |
| 68 "extension_types": ["platform_app"] | 72 "extension_types": ["platform_app"] |
| 69 }, | 73 }, |
| 70 "app.window.ime": [ | 74 "app.window.ime": [ |
| 71 { | 75 { |
| 72 "channel": "stable", | 76 "channel": "stable", |
| 73 "extension_types": ["extension"], | 77 "extension_types": ["extension"], |
| 74 "platforms": ["chromeos"], | 78 "platforms": ["chromeos"], |
| 75 "whitelist": [ | 79 "whitelist": [ |
| (...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 "extension_types": ["extension", "legacy_packaged_app"] | 348 "extension_types": ["extension", "legacy_packaged_app"] |
| 345 } | 349 } |
| 346 ], | 350 ], |
| 347 "webRequestBlocking": [ | 351 "webRequestBlocking": [ |
| 348 { | 352 { |
| 349 "channel": "stable", | 353 "channel": "stable", |
| 350 "extension_types": ["extension", "legacy_packaged_app"] | 354 "extension_types": ["extension", "legacy_packaged_app"] |
| 351 } | 355 } |
| 352 ] | 356 ] |
| 353 } | 357 } |
| OLD | NEW |