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

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

Issue 2857143002: Whitelist accessibilityPrivate APIs (Closed)
Patch Set: Use more fine grained permission to the touch start/stop components Created 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 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 chrome/common/extensions/api/_features.md to understand this file, as 6 // See chrome/common/extensions/api/_features.md to understand this file, as
7 // well as feature.h, simple_feature.h, and feature_provider.h. 7 // well as feature.h, simple_feature.h, and 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 "dependencies": ["permission:accessibilityFeatures.modify"], 14 "dependencies": ["permission:accessibilityFeatures.modify"],
15 "contexts": ["blessed_extension"] 15 "contexts": ["blessed_extension"]
16 }, { 16 }, {
17 "dependencies": ["permission:accessibilityFeatures.read"], 17 "dependencies": ["permission:accessibilityFeatures.read"],
18 "contexts": ["blessed_extension"] 18 "contexts": ["blessed_extension"]
19 }], 19 }],
20 "accessibilityPrivate": { 20 "accessibilityPrivate": {
21 "dependencies": ["permission:accessibilityPrivate"], 21 "dependencies": ["permission:accessibilityPrivate"],
22 "contexts": ["blessed_extension"] 22 "contexts": ["blessed_extension"]
23 }, 23 },
24 "accessibilityPrivate.onTwoFingerTouchStart": {
25 "channel": "stable",
26 "contexts": ["blessed_extension"],
27 "dependencies": [],
28 "extension_types": ["platform_app"],
29 "session_types": ["kiosk"],
30 "whitelist": [
31 "E703483CEF33DEC18B4B6DD84B5C776FB9182BDB", // http://crbug.com/717501
32 "A3BC37E2148AC4E99BE4B16AF9D42DD1E592BBBE", // http://crbug.com/717501
33 "1C93BD3CF875F4A73C0B2A163BB8FBDA8B8B3D80", // http://crbug.com/717501
34 "307E96539209F95A1A8740C713E6998A73657D96", // http://crbug.com/717501
35 "4F25792AF1AA7483936DE29C07806F203C7170A0", // http://crbug.com/717501
36 "BD8781D757D830FC2E85470A1B6E8A718B7EE0D9", // http://crbug.com/717501
37 "4AC2B6C63C6480D150DFDA13E4A5956EB1D0DDBB", // http://crbug.com/717501
38 "81986D4F846CEDDDB962643FA501D1780DD441BB" // http://crbug.com/717501
39 ]
40 },
41 "accessibilityPrivate.onTwoFingerTouchStop": {
42 "channel": "stable",
43 "contexts": ["blessed_extension"],
44 "dependencies": [],
45 "extension_types": ["platform_app"],
46 "session_types": ["kiosk"],
47 "whitelist": [
48 "E703483CEF33DEC18B4B6DD84B5C776FB9182BDB", // http://crbug.com/717501
49 "A3BC37E2148AC4E99BE4B16AF9D42DD1E592BBBE", // http://crbug.com/717501
50 "1C93BD3CF875F4A73C0B2A163BB8FBDA8B8B3D80", // http://crbug.com/717501
51 "307E96539209F95A1A8740C713E6998A73657D96", // http://crbug.com/717501
52 "4F25792AF1AA7483936DE29C07806F203C7170A0", // http://crbug.com/717501
53 "BD8781D757D830FC2E85470A1B6E8A718B7EE0D9", // http://crbug.com/717501
54 "4AC2B6C63C6480D150DFDA13E4A5956EB1D0DDBB", // http://crbug.com/717501
55 "81986D4F846CEDDDB962643FA501D1780DD441BB" // http://crbug.com/717501
56 ]
57 },
24 "activityLogPrivate": { 58 "activityLogPrivate": {
25 "dependencies": ["permission:activityLogPrivate"], 59 "dependencies": ["permission:activityLogPrivate"],
26 "contexts": ["blessed_extension"] 60 "contexts": ["blessed_extension"]
27 }, 61 },
28 "app": { 62 "app": {
29 "blacklist": [ 63 "blacklist": [
30 "2FC374607C2DF285634B67C64A2E356C607091C3", // Quickoffice 64 "2FC374607C2DF285634B67C64A2E356C607091C3", // Quickoffice
31 "3727DD3E564B6055387425027AD74C58784ACC15", // Quickoffice internal 65 "3727DD3E564B6055387425027AD74C58784ACC15", // Quickoffice internal
32 "12E618C3C6E97495AAECF2AC12DEB082353241C6", // QO component extension 66 "12E618C3C6E97495AAECF2AC12DEB082353241C6", // QO component extension
33 "06BE211D5F014BAB34BC22D9DDA09C63A81D828E", // Official xkb extension 67 "06BE211D5F014BAB34BC22D9DDA09C63A81D828E", // Official xkb extension
(...skipping 777 matching lines...) Expand 10 before | Expand all | Expand 10 after
811 "dependencies": ["api:tabs"], 845 "dependencies": ["api:tabs"],
812 "contexts": ["blessed_extension"] 846 "contexts": ["blessed_extension"]
813 }, { 847 }, {
814 "channel": "stable", 848 "channel": "stable",
815 "contexts": ["webui"], 849 "contexts": ["webui"],
816 "matches": [ 850 "matches": [
817 "chrome://bookmarks/*" 851 "chrome://bookmarks/*"
818 ] 852 ]
819 }] 853 }]
820 } 854 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698