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

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

Issue 49333004: Make app APIs implicit within _api_features.json not _permission_features.json. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: delete component extension granting Created 7 years, 1 month 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
« no previous file with comments | « no previous file | chrome/common/extensions/api/_permission_features.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 11 matching lines...) Expand all
22 "channel": "stable", 22 "channel": "stable",
23 "extension_types": ["hosted_app", "extension", "legacy_packaged_app"], 23 "extension_types": ["hosted_app", "extension", "legacy_packaged_app"],
24 "contexts": [ 24 "contexts": [
25 "blessed_extension", "unblessed_extension", "content_script", "web_page" 25 "blessed_extension", "unblessed_extension", "content_script", "web_page"
26 ], 26 ],
27 "matches": [ 27 "matches": [
28 "http://*/*", "https://*/*", "chrome-extension://*/*", "file://*/*" 28 "http://*/*", "https://*/*", "chrome-extension://*/*", "file://*/*"
29 ] 29 ]
30 }, 30 },
31 "app.runtime": { 31 "app.runtime": {
32 "noparent": true, 32 "channel": "stable",
33 "contexts": ["blessed_extension"], 33 "contexts": ["blessed_extension"],
34 "dependencies": ["permission:app.runtime"] 34 "extension_types": ["platform_app"],
35 "noparent": true
35 }, 36 },
36 "app.window": { 37 "app.window": {
37 "noparent": true, 38 "channel": "stable",
38 "contexts": ["blessed_extension"], 39 "contexts": ["blessed_extension"],
39 "dependencies": ["permission:app.window"] 40 "extension_types": ["platform_app"],
41 "noparent": true
40 }, 42 },
41 "app.currentWindowInternal": { 43 "app.currentWindowInternal": {
42 "noparent": true, 44 "noparent": true,
43 "internal": true, 45 "internal": true,
44 "channel": "stable", 46 "channel": "stable",
45 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] 47 "contexts": ["blessed_extension", "unblessed_extension", "content_script"]
46 }, 48 },
47 "app.currentWindowInternal.setAlwaysOnTop": { 49 "app.currentWindowInternal.setAlwaysOnTop": {
48 "channel": "dev", 50 "channel": "dev",
49 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] 51 "contexts": ["blessed_extension", "unblessed_extension", "content_script"]
(...skipping 665 matching lines...) Expand 10 before | Expand all | Expand 10 after
715 "internal": true, 717 "internal": true,
716 "channel": "stable", 718 "channel": "stable",
717 "dependencies": ["permission:webview"], 719 "dependencies": ["permission:webview"],
718 "contexts": ["blessed_extension"] 720 "contexts": ["blessed_extension"]
719 }, 721 },
720 "windows": { 722 "windows": {
721 "dependencies": ["api:tabs"], 723 "dependencies": ["api:tabs"],
722 "contexts": ["blessed_extension"] 724 "contexts": ["blessed_extension"]
723 } 725 }
724 } 726 }
OLDNEW
« no previous file with comments | « no previous file | chrome/common/extensions/api/_permission_features.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698