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

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

Issue 18578008: [SystemInfo API] Move Storage API out of experimental namespace and rename to the "system" namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rename to the "system" namespace. Created 7 years, 5 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 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 "contexts": ["blessed_extension"] 202 "contexts": ["blessed_extension"]
203 }, 203 },
204 "experimental.record": { 204 "experimental.record": {
205 "dependencies": ["permission:experimental"], 205 "dependencies": ["permission:experimental"],
206 "contexts": ["blessed_extension"] 206 "contexts": ["blessed_extension"]
207 }, 207 },
208 "experimental.rlz": { 208 "experimental.rlz": {
209 "dependencies": ["permission:experimental"], 209 "dependencies": ["permission:experimental"],
210 "contexts": ["blessed_extension"] 210 "contexts": ["blessed_extension"]
211 }, 211 },
212 "experimental.systemInfo.storage": {
213 "dependencies": ["permission:experimental"],
214 "contexts": ["blessed_extension"]
215 },
216 "extension": { 212 "extension": {
217 "channel": "stable", 213 "channel": "stable",
218 "extension_types": ["extension", "packaged_app"], 214 "extension_types": ["extension", "packaged_app"],
219 "contexts": ["blessed_extension"] 215 "contexts": ["blessed_extension"]
220 }, 216 },
221 "extension.getURL": { 217 "extension.getURL": {
222 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] 218 "contexts": ["blessed_extension", "unblessed_extension", "content_script"]
223 }, 219 },
224 "extension.inIncognitoContext": { 220 "extension.inIncognitoContext": {
225 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] 221 "contexts": ["blessed_extension", "unblessed_extension", "content_script"]
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
462 "contexts": ["blessed_extension"] 458 "contexts": ["blessed_extension"]
463 }, 459 },
464 "systemInfo.display": { 460 "systemInfo.display": {
465 "dependencies": ["permission:systemInfo.display"], 461 "dependencies": ["permission:systemInfo.display"],
466 "contexts": ["blessed_extension"] 462 "contexts": ["blessed_extension"]
467 }, 463 },
468 "systemInfo.memory": { 464 "systemInfo.memory": {
469 "dependencies": ["permission:systemInfo.memory"], 465 "dependencies": ["permission:systemInfo.memory"],
470 "contexts": ["blessed_extension"] 466 "contexts": ["blessed_extension"]
471 }, 467 },
468 "system.storage": {
469 "dependencies": ["permission:system.storage"],
470 "contexts": ["blessed_extension"]
471 },
472 "systemPrivate": { 472 "systemPrivate": {
473 "dependencies": ["permission:systemPrivate"], 473 "dependencies": ["permission:systemPrivate"],
474 "contexts": ["blessed_extension"] 474 "contexts": ["blessed_extension"]
475 }, 475 },
476 "tabCapture": { 476 "tabCapture": {
477 "dependencies": ["permission:tabCapture"], 477 "dependencies": ["permission:tabCapture"],
478 "contexts": ["blessed_extension"] 478 "contexts": ["blessed_extension"]
479 }, 479 },
480 "tabs": { 480 "tabs": {
481 "channel": "stable", 481 "channel": "stable",
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
554 }, 554 },
555 "webview": { 555 "webview": {
556 "dependencies": ["permission:webview"], 556 "dependencies": ["permission:webview"],
557 "contexts": ["blessed_extension"] 557 "contexts": ["blessed_extension"]
558 }, 558 },
559 "windows": { 559 "windows": {
560 "dependencies": ["permission:tabs"], 560 "dependencies": ["permission:tabs"],
561 "contexts": ["blessed_extension"] 561 "contexts": ["blessed_extension"]
562 } 562 }
563 } 563 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698