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

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: fixes 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
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 "contexts": ["blessed_extension"]
57 },
58 "runtime.connect": {
59 "channel": "stable",
60 "contexts": ["blessed_extension", "unblessed_extension", "content_script"]
61 },
62 "runtime.getManifest": {
63 "channel": "stable",
64 "contexts": ["blessed_extension", "unblessed_extension", "content_script"]
65 },
66 "runtime.getURL": {
67 "channel": "stable",
68 "contexts": ["blessed_extension", "unblessed_extension", "content_script"]
69 },
70 "runtime.id": {
71 "channel": "stable",
72 "contexts": ["blessed_extension", "unblessed_extension", "content_script"]
73 },
74 "runtime.lastError": {
75 "channel": "stable",
76 "contexts": ["blessed_extension", "unblessed_extension", "content_script"]
77 },
78 "runtime.onConnect": {
79 "channel": "stable",
80 "contexts": ["blessed_extension", "unblessed_extension", "content_script"]
81 },
82 "runtime.onMessage": {
83 "channel": "stable",
84 "contexts": ["blessed_extension", "unblessed_extension", "content_script"]
85 },
86 "runtime.reload": {
87 "channel": "stable",
88 "contexts": ["blessed_extension", "unblessed_extension", "content_script"]
89 },
90 "runtime.requestUpdateCheck": {
91 "channel": "stable",
92 "contexts": ["blessed_extension", "unblessed_extension", "content_script"]
93 },
94 "runtime.sendMessage": {
95 "channel": "stable",
96 "contexts": ["blessed_extension", "unblessed_extension", "content_script"]
97 },
54 "webRequestInternal": { 98 "webRequestInternal": {
55 "internal": true, 99 "internal": true,
56 "channel": "stable", 100 "channel": "stable",
57 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] 101 "contexts": ["blessed_extension", "unblessed_extension", "content_script"]
58 }, 102 },
59 "webstore": { 103 "webstore": {
60 // Hosted apps can use the webstore API from within a blessed context. 104 // Hosted apps can use the webstore API from within a blessed context.
61 "channel": "stable", 105 "channel": "stable",
62 "extension_types": ["hosted_app"], 106 "extension_types": ["hosted_app"],
63 "contexts": ["blessed_extension", "web_page"], 107 "contexts": ["blessed_extension", "web_page"],
64 // Any webpage can use the webstore API. 108 // Any webpage can use the webstore API.
65 "matches": ["http://*/*", "https://*/*"] 109 "matches": ["http://*/*", "https://*/*"]
66 } 110 }
67 } 111 }
OLDNEW
« no previous file with comments | « no previous file | chrome/common/extensions/api/extension_api.h » ('j') | chrome/renderer/resources/extensions/binding.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698