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

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

Issue 546683002: Move app.window section of _api_features.json from chrome/common/extensions/api to extensions/commo… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move permissions Created 6 years, 3 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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/extensions. 5 // This features file defines extension APIs implemented under src/extensions.
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.
(...skipping 18 matching lines...) Expand all
29 "component_extensions_auto_granted": false, 29 "component_extensions_auto_granted": false,
30 "contexts": ["blessed_extension"], 30 "contexts": ["blessed_extension"],
31 "extension_types": ["extension"], 31 "extension_types": ["extension"],
32 "noparent": true, 32 "noparent": true,
33 "whitelist": [ 33 "whitelist": [
34 "2FC374607C2DF285634B67C64A2E356C607091C3", // Quickoffice 34 "2FC374607C2DF285634B67C64A2E356C607091C3", // Quickoffice
35 "3727DD3E564B6055387425027AD74C58784ACC15", // Quickoffice internal 35 "3727DD3E564B6055387425027AD74C58784ACC15", // Quickoffice internal
36 "12E618C3C6E97495AAECF2AC12DEB082353241C6" // QO component extension 36 "12E618C3C6E97495AAECF2AC12DEB082353241C6" // QO component extension
37 ] 37 ]
38 }], 38 }],
39 "app.window": {
40 "channel": "stable",
41 "contexts": ["blessed_extension"],
42 "extension_types": ["platform_app"],
43 "noparent": true
44 },
45 "app.window.canSetVisibleOnAllWorkspaces": {
46 "channel": "dev"
47 },
39 "app.currentWindowInternal": { 48 "app.currentWindowInternal": {
40 "noparent": true, 49 "noparent": true,
41 "internal": true, 50 "internal": true,
42 "channel": "stable", 51 "channel": "stable",
43 "contexts": ["blessed_extension"] 52 "contexts": ["blessed_extension"]
44 }, 53 },
45 "app.currentWindowInternal.setShape": { 54 "app.currentWindowInternal.setShape": {
46 "dependencies": ["permission:app.window.shape"], 55 "dependencies": ["permission:app.window.shape"],
47 "contexts": ["blessed_extension"] 56 "contexts": ["blessed_extension"]
48 }, 57 },
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 }, 205 },
197 "usb": { 206 "usb": {
198 "dependencies": ["permission:usb"], 207 "dependencies": ["permission:usb"],
199 "contexts": ["blessed_extension"] 208 "contexts": ["blessed_extension"]
200 }, 209 },
201 "usbPrivate": { 210 "usbPrivate": {
202 "channel": "dev", 211 "channel": "dev",
203 "contexts": ["webui"] 212 "contexts": ["webui"]
204 } 213 }
205 } 214 }
OLDNEW
« no previous file with comments | « chrome/common/extensions/permissions/chrome_api_permissions.cc ('k') | extensions/common/api/_permission_features.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698