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

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

Issue 20081002: Remove experimental permission from infobars API and moving it to dev channel (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added license header Created 7 years, 4 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 // See c/c/e/features/* to understand this file, in particular feature.h, 5 // See c/c/e/features/* to understand this file, in particular feature.h,
6 // simple_feature.h, and base_feature_provider.h. 6 // simple_feature.h, and base_feature_provider.h.
7 7
8 { 8 {
9 "activityLogPrivate": { 9 "activityLogPrivate": {
10 "dependencies": ["permission:activityLogPrivate"], 10 "dependencies": ["permission:activityLogPrivate"],
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 "contexts": ["blessed_extension"] 178 "contexts": ["blessed_extension"]
179 }, 179 },
180 "experimental.identity": { 180 "experimental.identity": {
181 "dependencies": ["permission:experimental"], 181 "dependencies": ["permission:experimental"],
182 "contexts": ["blessed_extension"] 182 "contexts": ["blessed_extension"]
183 }, 183 },
184 "experimental.idltest": { 184 "experimental.idltest": {
185 "dependencies": ["permission:experimental"], 185 "dependencies": ["permission:experimental"],
186 "contexts": ["blessed_extension"] 186 "contexts": ["blessed_extension"]
187 }, 187 },
188 "experimental.infobars": {
189 "dependencies": ["permission:experimental"],
190 "contexts": ["blessed_extension"]
191 },
192 "experimental.input.virtualKeyboard": { 188 "experimental.input.virtualKeyboard": {
193 "dependencies": ["permission:experimental"], 189 "dependencies": ["permission:experimental"],
194 "contexts": ["blessed_extension"] 190 "contexts": ["blessed_extension"]
195 }, 191 },
196 "experimental.processes": { 192 "experimental.processes": {
197 "dependencies": ["permission:experimental"], 193 "dependencies": ["permission:experimental"],
198 "contexts": ["blessed_extension"] 194 "contexts": ["blessed_extension"]
199 }, 195 },
200 "experimental.mediaGalleries": { 196 "experimental.mediaGalleries": {
201 "dependencies": ["permission:experimental"], 197 "dependencies": ["permission:experimental"],
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 "contexts": ["blessed_extension"] 271 "contexts": ["blessed_extension"]
276 }, 272 },
277 "identityPrivate": { 273 "identityPrivate": {
278 "dependencies": ["permission:identityPrivate"], 274 "dependencies": ["permission:identityPrivate"],
279 "contexts": ["blessed_extension"] 275 "contexts": ["blessed_extension"]
280 }, 276 },
281 "idle": { 277 "idle": {
282 "dependencies": ["permission:idle"], 278 "dependencies": ["permission:idle"],
283 "contexts": ["blessed_extension"] 279 "contexts": ["blessed_extension"]
284 }, 280 },
281 "infobars": {
282 "dependencies": ["permission:infobars"],
283 "contexts": ["blessed_extension"]
284 },
285 "input.ime": { 285 "input.ime": {
286 "platform": "chromeos", 286 "platform": "chromeos",
287 "dependencies": ["permission:input"], 287 "dependencies": ["permission:input"],
288 "contexts": ["blessed_extension"] 288 "contexts": ["blessed_extension"]
289 }, 289 },
290 "inputMethodPrivate": { 290 "inputMethodPrivate": {
291 "platform": "chromeos", 291 "platform": "chromeos",
292 "dependencies": ["permission:inputMethodPrivate"], 292 "dependencies": ["permission:inputMethodPrivate"],
293 "contexts": ["blessed_extension"] 293 "contexts": ["blessed_extension"]
294 }, 294 },
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
570 }, 570 },
571 "webview": { 571 "webview": {
572 "dependencies": ["permission:webview"], 572 "dependencies": ["permission:webview"],
573 "contexts": ["blessed_extension"] 573 "contexts": ["blessed_extension"]
574 }, 574 },
575 "windows": { 575 "windows": {
576 "dependencies": ["permission:tabs"], 576 "dependencies": ["permission:tabs"],
577 "contexts": ["blessed_extension"] 577 "contexts": ["blessed_extension"]
578 } 578 }
579 } 579 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698