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

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

Issue 14494013: Allow API functions and events to have entries in _api_features.json (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix bug in searching for unprivileged Created 7 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
« no previous file with comments | « no previous file | chrome/common/extensions/api/extension_api.h » ('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 { 5 {
6 "app": { 6 "app": {
7 "channel": "stable", 7 "channel": "stable",
8 "extension_types": ["hosted_app", "extension", "packaged_app"], 8 "extension_types": ["hosted_app", "extension", "packaged_app"],
9 "contexts": [ 9 "contexts": [
10 "blessed_extension", "unblessed_extension", "content_script", "web_page" 10 "blessed_extension", "unblessed_extension", "content_script", "web_page"
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 "contexts": [ 44 "contexts": [
45 "blessed_extension", "unblessed_extension", "content_script", "web_page" 45 "blessed_extension", "unblessed_extension", "content_script", "web_page"
46 ], 46 ],
47 "matches": ["<all_urls>"] 47 "matches": ["<all_urls>"]
48 }, 48 },
49 "fileBrowserHandlerInternal": { 49 "fileBrowserHandlerInternal": {
50 "internal": true, 50 "internal": true,
51 "channel": "stable", 51 "channel": "stable",
52 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] 52 "contexts": ["blessed_extension", "unblessed_extension", "content_script"]
53 }, 53 },
54 "runtime": {
55 "channel": "stable",
56 "extension_types": ["extension", "packaged_app", "platform_app"],
57 "contexts": ["blessed_extension"]
58 },
59 "runtime.connect": {
60 "channel": "stable",
61 "extension_types": ["extension", "packaged_app", "platform_app"],
62 "contexts": ["blessed_extension", "unblessed_extension", "content_script"]
63 },
64 "runtime.getManifest": {
65 "channel": "stable",
66 "extension_types": ["extension", "packaged_app", "platform_app"],
67 "contexts": ["blessed_extension", "unblessed_extension", "content_script"]
68 },
69 "runtime.getURL": {
70 "channel": "stable",
71 "extension_types": ["extension", "packaged_app", "platform_app"],
72 "contexts": ["blessed_extension", "unblessed_extension", "content_script"]
73 },
74 "runtime.id": {
75 "channel": "stable",
76 "extension_types": ["extension", "packaged_app", "platform_app"],
77 "contexts": ["blessed_extension", "unblessed_extension", "content_script"]
78 },
79 "runtime.lastError": {
80 "channel": "stable",
81 "extension_types": ["extension", "packaged_app", "platform_app"],
82 "contexts": ["blessed_extension", "unblessed_extension", "content_script"]
83 },
84 "runtime.onConnect": {
85 "channel": "stable",
86 "extension_types": ["extension", "packaged_app", "platform_app"],
87 "contexts": ["blessed_extension", "unblessed_extension", "content_script"]
88 },
89 "runtime.onMessage": {
90 "channel": "stable",
91 "extension_types": ["extension", "packaged_app", "platform_app"],
92 "contexts": ["blessed_extension", "unblessed_extension", "content_script"]
93 },
94 "runtime.reload": {
95 "channel": "stable",
96 "extension_types": ["extension", "packaged_app", "platform_app"],
97 "contexts": ["blessed_extension", "unblessed_extension", "content_script"]
98 },
99 "runtime.requestUpdateCheck": {
100 "channel": "stable",
101 "extension_types": ["extension", "packaged_app", "platform_app"],
102 "contexts": ["blessed_extension", "unblessed_extension", "content_script"]
103 },
104 "runtime.sendMessage": {
105 "channel": "stable",
106 "extension_types": ["extension", "packaged_app", "platform_app"],
107 "contexts": ["blessed_extension", "unblessed_extension", "content_script"]
108 },
54 "webRequestInternal": { 109 "webRequestInternal": {
55 "internal": true, 110 "internal": true,
56 "channel": "stable", 111 "channel": "stable",
57 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] 112 "contexts": ["blessed_extension", "unblessed_extension", "content_script"]
58 }, 113 },
59 "webstore": { 114 "webstore": {
60 // Hosted apps can use the webstore API from within a blessed context. 115 // Hosted apps can use the webstore API from within a blessed context.
61 "channel": "stable", 116 "channel": "stable",
62 "extension_types": ["hosted_app"], 117 "extension_types": ["hosted_app"],
63 "contexts": ["blessed_extension", "web_page"], 118 "contexts": ["blessed_extension", "web_page"],
64 // Any webpage can use the webstore API. 119 // Any webpage can use the webstore API.
65 "matches": ["http://*/*", "https://*/*"] 120 "matches": ["http://*/*", "https://*/*"]
66 } 121 }
67 } 122 }
OLDNEW
« no previous file with comments | « no previous file | chrome/common/extensions/api/extension_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698