| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 "extension_types": ["platform_app"] | 63 "extension_types": ["platform_app"] |
| 64 }, | 64 }, |
| 65 "app.window.fullscreen": { | 65 "app.window.fullscreen": { |
| 66 "channel": "stable", | 66 "channel": "stable", |
| 67 "extension_types": ["platform_app"] | 67 "extension_types": ["platform_app"] |
| 68 }, | 68 }, |
| 69 "app.window.fullscreen.overrideEsc": { | 69 "app.window.fullscreen.overrideEsc": { |
| 70 "channel": "stable", | 70 "channel": "stable", |
| 71 "extension_types": ["platform_app"] | 71 "extension_types": ["platform_app"] |
| 72 }, | 72 }, |
| 73 "app.window.requestAllKeys": { |
| 74 "channel": "dev", |
| 75 "extension_types": ["platform_app"] |
| 76 }, |
| 73 "app.window.shape": [ | 77 "app.window.shape": [ |
| 74 { | 78 { |
| 75 "channel": "beta", | 79 "channel": "beta", |
| 76 "extension_types": ["platform_app"] | 80 "extension_types": ["platform_app"] |
| 77 }, | 81 }, |
| 78 { | 82 { |
| 79 "channel": "stable", | 83 "channel": "stable", |
| 80 "extension_types": ["platform_app"], | 84 "extension_types": ["platform_app"], |
| 81 "whitelist": [ | 85 "whitelist": [ |
| 82 "0F42756099D914A026DADFA182871C015735DD95", // http://crbug.com/323773 | 86 "0F42756099D914A026DADFA182871C015735DD95", // http://crbug.com/323773 |
| (...skipping 946 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1029 // Only allowed for whitelisted extensions until all the caveats are | 1033 // Only allowed for whitelisted extensions until all the caveats are |
| 1030 // addressed. Tracked in crbug/285151. | 1034 // addressed. Tracked in crbug/285151. |
| 1031 "channel": "stable", | 1035 "channel": "stable", |
| 1032 "extension_types": ["extension"], | 1036 "extension_types": ["extension"], |
| 1033 "location": "component", | 1037 "location": "component", |
| 1034 "whitelist": [ | 1038 "whitelist": [ |
| 1035 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension | 1039 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension |
| 1036 ] | 1040 ] |
| 1037 }] | 1041 }] |
| 1038 } | 1042 } |
| OLD | NEW |