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

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: rebase 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
« no previous file with comments | « chrome/common/extensions/api/_api_features.json ('k') | 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 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": {
benwells 2014/09/09 17:52:57 What about the currentWindow stuff? This makes the
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 },
49 "dns": { 58 "dns": {
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 }, 203 },
195 "usb": { 204 "usb": {
196 "dependencies": ["permission:usb"], 205 "dependencies": ["permission:usb"],
197 "contexts": ["blessed_extension"] 206 "contexts": ["blessed_extension"]
198 }, 207 },
199 "usbPrivate": { 208 "usbPrivate": {
200 "channel": "dev", 209 "channel": "dev",
201 "contexts": ["webui"] 210 "contexts": ["webui"]
202 } 211 }
203 } 212 }
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/_api_features.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698