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

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

Issue 268823002: Re-land: Rename experimental.accessibility to accessibilityPrivate (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 7 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 | Annotate | Revision Log
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 // This features file defines extension APIs implemented under src/chrome. 5 // This features file defines extension APIs implemented under src/chrome.
6 // See extensions/common/features/* to understand this file, in particular 6 // See extensions/common/features/* to understand this file, in particular
7 // feature.h, simple_feature.h, and base_feature_provider.h. 7 // feature.h, simple_feature.h, and base_feature_provider.h.
8 // 8 //
9 // Note that specifying "web_page", "blessed_web_page", or "all" as a context 9 // Note that specifying "web_page", "blessed_web_page", or "all" as a context
10 // type will require manually updating chrome/renderer/resources/dispatcher.cc. 10 // type will require manually updating chrome/renderer/resources/dispatcher.cc.
11 11
12 { 12 {
13 "accessibilityFeatures": [{ 13 "accessibilityFeatures": [{
14 "platforms": ["chromeos"], 14 "platforms": ["chromeos"],
15 "dependencies": ["permission:accessibilityFeatures.modify"], 15 "dependencies": ["permission:accessibilityFeatures.modify"],
16 "contexts": ["blessed_extension"] 16 "contexts": ["blessed_extension"]
17 }, { 17 }, {
18 "platforms": ["chromeos"], 18 "platforms": ["chromeos"],
19 "dependencies": ["permission:accessibilityFeatures.read"], 19 "dependencies": ["permission:accessibilityFeatures.read"],
20 "contexts": ["blessed_extension"] 20 "contexts": ["blessed_extension"]
21 }], 21 }],
22 "accessibilityPrivate": {
23 "dependencies": ["permission:accessibilityPrivate"],
24 "contexts": ["blessed_extension"]
25 },
22 "activityLogPrivate": { 26 "activityLogPrivate": {
23 "dependencies": ["permission:activityLogPrivate"], 27 "dependencies": ["permission:activityLogPrivate"],
24 "contexts": ["blessed_extension"] 28 "contexts": ["blessed_extension"]
25 }, 29 },
26 "adview": { 30 "adview": {
27 "dependencies": ["permission:adview"], 31 "dependencies": ["permission:adview"],
28 "contexts": ["blessed_extension"] 32 "contexts": ["blessed_extension"]
29 }, 33 },
30 "alarms": { 34 "alarms": {
31 "dependencies": ["permission:alarms"], 35 "dependencies": ["permission:alarms"],
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
281 "dependencies": ["permission:enterprise.platformKeysPrivate"], 285 "dependencies": ["permission:enterprise.platformKeysPrivate"],
282 "contexts": ["blessed_extension"] 286 "contexts": ["blessed_extension"]
283 }, 287 },
284 "events": { 288 "events": {
285 "internal": true, 289 "internal": true,
286 "channel": "stable", 290 "channel": "stable",
287 "extension_types": ["platform_app", "extension"], 291 "extension_types": ["platform_app", "extension"],
288 "contexts": "all", 292 "contexts": "all",
289 "matches": ["<all_urls>"] 293 "matches": ["<all_urls>"]
290 }, 294 },
291 "experimental.accessibility": {
292 "dependencies": ["permission:experimental"],
293 "contexts": ["blessed_extension"]
294 },
295 "experimental.devtools.audits": { 295 "experimental.devtools.audits": {
296 "dependencies": ["permission:experimental", "manifest:devtools_page"], 296 "dependencies": ["permission:experimental", "manifest:devtools_page"],
297 "extension_types": ["platform_app"], 297 "extension_types": ["platform_app"],
298 "contexts": ["blessed_extension"] 298 "contexts": ["blessed_extension"]
299 }, 299 },
300 "experimental.devtools.console": { 300 "experimental.devtools.console": {
301 "dependencies": ["permission:experimental", "manifest:devtools_page"], 301 "dependencies": ["permission:experimental", "manifest:devtools_page"],
302 "extension_types": ["platform_app"], 302 "extension_types": ["platform_app"],
303 "contexts": ["blessed_extension"] 303 "contexts": ["blessed_extension"]
304 }, 304 },
(...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after
797 "internal": true, 797 "internal": true,
798 "channel": "stable", 798 "channel": "stable",
799 "dependencies": ["permission:webview"], 799 "dependencies": ["permission:webview"],
800 "contexts": ["blessed_extension"] 800 "contexts": ["blessed_extension"]
801 }, 801 },
802 "windows": { 802 "windows": {
803 "dependencies": ["api:tabs"], 803 "dependencies": ["api:tabs"],
804 "contexts": ["blessed_extension"] 804 "contexts": ["blessed_extension"]
805 } 805 }
806 } 806 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698