| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 "extension_types": ["platform_app"] | 65 "extension_types": ["platform_app"] |
| 66 }, | 66 }, |
| 67 "app.window.fullscreen": { | 67 "app.window.fullscreen": { |
| 68 "channel": "stable", | 68 "channel": "stable", |
| 69 "extension_types": ["platform_app"] | 69 "extension_types": ["platform_app"] |
| 70 }, | 70 }, |
| 71 "app.window.fullscreen.overrideEsc": { | 71 "app.window.fullscreen.overrideEsc": { |
| 72 "channel": "stable", | 72 "channel": "stable", |
| 73 "extension_types": ["platform_app"] | 73 "extension_types": ["platform_app"] |
| 74 }, | 74 }, |
| 75 "app.window.interceptAllKeys": { |
| 76 "channel": "dev", |
| 77 "extension_types": ["platform_app"] |
| 78 }, |
| 75 "app.window.shape": [ | 79 "app.window.shape": [ |
| 76 { | 80 { |
| 77 "channel": "beta", | 81 "channel": "beta", |
| 78 "extension_types": ["platform_app"] | 82 "extension_types": ["platform_app"] |
| 79 }, | 83 }, |
| 80 { | 84 { |
| 81 "channel": "stable", | 85 "channel": "stable", |
| 82 "extension_types": ["platform_app"], | 86 "extension_types": ["platform_app"], |
| 83 "whitelist": [ | 87 "whitelist": [ |
| 84 "0F42756099D914A026DADFA182871C015735DD95", // http://crbug.com/323773 | 88 "0F42756099D914A026DADFA182871C015735DD95", // http://crbug.com/323773 |
| (...skipping 1027 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1112 // Only allowed for whitelisted extensions until all the caveats are | 1116 // Only allowed for whitelisted extensions until all the caveats are |
| 1113 // addressed. Tracked in crbug/285151. | 1117 // addressed. Tracked in crbug/285151. |
| 1114 "channel": "stable", | 1118 "channel": "stable", |
| 1115 "extension_types": ["extension"], | 1119 "extension_types": ["extension"], |
| 1116 "location": "component", | 1120 "location": "component", |
| 1117 "whitelist": [ | 1121 "whitelist": [ |
| 1118 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension | 1122 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension |
| 1119 ] | 1123 ] |
| 1120 }] | 1124 }] |
| 1121 } | 1125 } |
| OLD | NEW |