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

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: 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 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
279 "contexts": ["blessed_extension"] 279 "contexts": ["blessed_extension"]
280 }, 280 },
281 "identityPrivate": { 281 "identityPrivate": {
282 "dependencies": ["permission:identityPrivate"], 282 "dependencies": ["permission:identityPrivate"],
283 "contexts": ["blessed_extension"] 283 "contexts": ["blessed_extension"]
284 }, 284 },
285 "idle": { 285 "idle": {
286 "dependencies": ["permission:idle"], 286 "dependencies": ["permission:idle"],
287 "contexts": ["blessed_extension"] 287 "contexts": ["blessed_extension"]
288 }, 288 },
289 "infobars": {
290 "dependencies": ["permission:infobars"],
291 "contexts": ["blessed_extension"]
292 },
289 "input.ime": { 293 "input.ime": {
290 "platform": "chromeos", 294 "platform": "chromeos",
291 "dependencies": ["permission:input"], 295 "dependencies": ["permission:input"],
292 "contexts": ["blessed_extension"] 296 "contexts": ["blessed_extension"]
293 }, 297 },
294 "inputMethodPrivate": { 298 "inputMethodPrivate": {
295 "platform": "chromeos", 299 "platform": "chromeos",
296 "dependencies": ["permission:inputMethodPrivate"], 300 "dependencies": ["permission:inputMethodPrivate"],
297 "contexts": ["blessed_extension"] 301 "contexts": ["blessed_extension"]
298 }, 302 },
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
555 }, 559 },
556 "webview": { 560 "webview": {
557 "dependencies": ["permission:webview"], 561 "dependencies": ["permission:webview"],
558 "contexts": ["blessed_extension"] 562 "contexts": ["blessed_extension"]
559 }, 563 },
560 "windows": { 564 "windows": {
561 "dependencies": ["permission:tabs"], 565 "dependencies": ["permission:tabs"],
562 "contexts": ["blessed_extension"] 566 "contexts": ["blessed_extension"]
563 } 567 }
564 } 568 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698