Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1235)

Side by Side Diff: chrome/common/extensions/api/_permission_features.json

Issue 503383002: Allow component IME extension use app.window and add 'ime' window type for app window (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more tests Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 "40063F1CF7B68BA847A26FA6620DDF156171D23C", 133 "40063F1CF7B68BA847A26FA6620DDF156171D23C",
134 "A6FD8E15353CF1F5C3D0A7B20E1D10AEA4DD3E6A", 134 "A6FD8E15353CF1F5C3D0A7B20E1D10AEA4DD3E6A",
135 "57AC4D9E6BD8A2D0A70056B5FAC2378CAA588912", 135 "57AC4D9E6BD8A2D0A70056B5FAC2378CAA588912",
136 "02037314DA4D913640DCF0E296A7D01F4FD793EC", 136 "02037314DA4D913640DCF0E296A7D01F4FD793EC",
137 "B6EC0809BC63E10B431C5E4AA3645232CA86B2A5", 137 "B6EC0809BC63E10B431C5E4AA3645232CA86B2A5",
138 "48CA541313139786F056DBCB504A1025CFF5D2E3", 138 "48CA541313139786F056DBCB504A1025CFF5D2E3",
139 "05106136AE7F08A3C181D4648E5438350B1D2B4F" 139 "05106136AE7F08A3C181D4648E5438350B1D2B4F"
140 ] 140 ]
141 } 141 }
142 ], 142 ],
143 "app.window.ime": [
144 {
145 "channel": "stable",
146 "extension_types": ["extension"],
147 "platforms": ["chromeos"],
148 "whitelist": [
149 "06BE211D5F014BAB34BC22D9DDA09C63A81D828E",
150 "F94EE6AB36D6C6588670B2B01EB65212D9C64E33"
151 ]
152 }
153 ],
143 "audio": [ 154 "audio": [
144 { 155 {
145 "channel": "dev", 156 "channel": "dev",
146 "extension_types": ["platform_app"] 157 "extension_types": ["platform_app"]
147 }, 158 },
148 { 159 {
149 "channel": "stable", 160 "channel": "stable",
150 "extension_types": ["platform_app"], 161 "extension_types": ["platform_app"],
151 "whitelist": [ 162 "whitelist": [
152 "8C3741E3AF0B93B6E8E0DDD499BB0B74839EA578", 163 "8C3741E3AF0B93B6E8E0DDD499BB0B74839EA578",
(...skipping 1048 matching lines...) Expand 10 before | Expand all | Expand 10 after
1201 // Only allowed for whitelisted extensions until all the caveats are 1212 // Only allowed for whitelisted extensions until all the caveats are
1202 // addressed. Tracked in crbug/285151. 1213 // addressed. Tracked in crbug/285151.
1203 "channel": "stable", 1214 "channel": "stable",
1204 "extension_types": ["extension"], 1215 "extension_types": ["extension"],
1205 "location": "component", 1216 "location": "component",
1206 "whitelist": [ 1217 "whitelist": [
1207 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension 1218 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension
1208 ] 1219 ]
1209 }] 1220 }]
1210 } 1221 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698