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

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

Issue 23799006: Move idltest API to trunk channel (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 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 // 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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 "contexts": ["blessed_extension"] 198 "contexts": ["blessed_extension"]
199 }, 199 },
200 "experimental.history": { 200 "experimental.history": {
201 "dependencies": ["permission:history", "permission:experimental"], 201 "dependencies": ["permission:history", "permission:experimental"],
202 "contexts": ["blessed_extension"] 202 "contexts": ["blessed_extension"]
203 }, 203 },
204 "experimental.identity": { 204 "experimental.identity": {
205 "dependencies": ["permission:experimental"], 205 "dependencies": ["permission:experimental"],
206 "contexts": ["blessed_extension"] 206 "contexts": ["blessed_extension"]
207 }, 207 },
208 "experimental.idltest": {
209 "dependencies": ["permission:experimental"],
210 "contexts": ["blessed_extension"]
211 },
212 "experimental.input.virtualKeyboard": { 208 "experimental.input.virtualKeyboard": {
213 "dependencies": ["permission:experimental"], 209 "dependencies": ["permission:experimental"],
214 "contexts": ["blessed_extension"] 210 "contexts": ["blessed_extension"]
215 }, 211 },
216 "experimental.rlz": { 212 "experimental.rlz": {
217 "dependencies": ["permission:experimental"], 213 "dependencies": ["permission:experimental"],
218 "contexts": ["blessed_extension"] 214 "contexts": ["blessed_extension"]
219 }, 215 },
220 "extension": { 216 "extension": {
221 "channel": "stable", 217 "channel": "stable",
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
279 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] 275 "contexts": ["blessed_extension", "unblessed_extension", "content_script"]
280 }, 276 },
281 "identity": { 277 "identity": {
282 "dependencies": ["permission:identity"], 278 "dependencies": ["permission:identity"],
283 "contexts": ["blessed_extension"] 279 "contexts": ["blessed_extension"]
284 }, 280 },
285 "identityPrivate": { 281 "identityPrivate": {
286 "dependencies": ["permission:identityPrivate"], 282 "dependencies": ["permission:identityPrivate"],
287 "contexts": ["blessed_extension"] 283 "contexts": ["blessed_extension"]
288 }, 284 },
285 "idltest": {
286 "dependencies": ["permission:idltest"],
287 "contexts": ["blessed_extension"]
288 },
289 "idle": { 289 "idle": {
290 "dependencies": ["permission:idle"], 290 "dependencies": ["permission:idle"],
291 "contexts": ["blessed_extension"] 291 "contexts": ["blessed_extension"]
292 }, 292 },
293 "infobars": { 293 "infobars": {
294 "dependencies": ["permission:infobars"], 294 "dependencies": ["permission:infobars"],
295 "contexts": ["blessed_extension"] 295 "contexts": ["blessed_extension"]
296 }, 296 },
297 "input.ime": { 297 "input.ime": {
298 "platform": "chromeos", 298 "platform": "chromeos",
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after
596 "webview": { 596 "webview": {
597 "internal": true, 597 "internal": true,
598 "dependencies": ["permission:webview"], 598 "dependencies": ["permission:webview"],
599 "contexts": ["blessed_extension"] 599 "contexts": ["blessed_extension"]
600 }, 600 },
601 "windows": { 601 "windows": {
602 "dependencies": ["api:tabs"], 602 "dependencies": ["api:tabs"],
603 "contexts": ["blessed_extension"] 603 "contexts": ["blessed_extension"]
604 } 604 }
605 } 605 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698