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

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

Issue 21854002: Remove experimental.record api completely (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 "contexts": ["blessed_extension"] 210 "contexts": ["blessed_extension"]
211 }, 211 },
212 "experimental.processes": { 212 "experimental.processes": {
213 "dependencies": ["permission:experimental"], 213 "dependencies": ["permission:experimental"],
214 "contexts": ["blessed_extension"] 214 "contexts": ["blessed_extension"]
215 }, 215 },
216 "experimental.mediaGalleries": { 216 "experimental.mediaGalleries": {
217 "dependencies": ["permission:experimental"], 217 "dependencies": ["permission:experimental"],
218 "contexts": ["blessed_extension"] 218 "contexts": ["blessed_extension"]
219 }, 219 },
220 "experimental.record": {
221 "dependencies": ["permission:experimental"],
222 "contexts": ["blessed_extension"]
223 },
224 "experimental.rlz": { 220 "experimental.rlz": {
225 "dependencies": ["permission:experimental"], 221 "dependencies": ["permission:experimental"],
226 "contexts": ["blessed_extension"] 222 "contexts": ["blessed_extension"]
227 }, 223 },
228 "extension": { 224 "extension": {
229 "channel": "stable", 225 "channel": "stable",
230 "extension_types": ["extension", "packaged_app"], 226 "extension_types": ["extension", "packaged_app"],
231 "contexts": ["blessed_extension"] 227 "contexts": ["blessed_extension"]
232 }, 228 },
233 "extension.getURL": { 229 "extension.getURL": {
(...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after
597 }, 593 },
598 "webview": { 594 "webview": {
599 "dependencies": ["permission:webview"], 595 "dependencies": ["permission:webview"],
600 "contexts": ["blessed_extension"] 596 "contexts": ["blessed_extension"]
601 }, 597 },
602 "windows": { 598 "windows": {
603 "dependencies": ["permission:tabs"], 599 "dependencies": ["permission:tabs"],
604 "contexts": ["blessed_extension"] 600 "contexts": ["blessed_extension"]
605 } 601 }
606 } 602 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698