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

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

Issue 797183005: Add a mimeHandler extension API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@streams-lifetime
Patch Set: rebase Created 5 years, 11 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 | « extensions/common/api/BUILD.gn ('k') | extensions/common/api/_manifest_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 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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 "management.getSelf": { 178 "management.getSelf": {
179 "dependencies": [], 179 "dependencies": [],
180 "channel": "stable", 180 "channel": "stable",
181 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] 181 "extension_types": ["extension", "legacy_packaged_app", "platform_app"]
182 }, 182 },
183 "management.uninstallSelf": { 183 "management.uninstallSelf": {
184 "dependencies": [], 184 "dependencies": [],
185 "channel": "stable", 185 "channel": "stable",
186 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] 186 "extension_types": ["extension", "legacy_packaged_app", "platform_app"]
187 }, 187 },
188 "mimeHandlerPrivate": {
189 "dependencies": ["manifest:mime_types_handler"],
190 "contexts": ["blessed_extension"]
191 },
188 "mojoPrivate": { 192 "mojoPrivate": {
189 "contexts": ["blessed_extension"], 193 "contexts": ["blessed_extension"],
190 "channel": "stable", 194 "channel": "stable",
191 "extension_types": ["platform_app", "extension"], 195 "extension_types": ["platform_app", "extension"],
192 "whitelist": [ 196 "whitelist": [
193 "63ED55E43214C211F82122ED56407FF1A807F2A3" // http://crbug.com/448569 197 "63ED55E43214C211F82122ED56407FF1A807F2A3" // http://crbug.com/448569
194 ] 198 ]
195 }, 199 },
196 "power": { 200 "power": {
197 "dependencies": ["permission:power"], 201 "dependencies": ["permission:power"],
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
415 }], 419 }],
416 "webViewRequest": [{ 420 "webViewRequest": [{
417 "dependencies": ["permission:webview"], 421 "dependencies": ["permission:webview"],
418 "contexts": ["blessed_extension"] 422 "contexts": ["blessed_extension"]
419 }, { 423 }, {
420 "channel": "stable", 424 "channel": "stable",
421 "contexts": ["webui"], 425 "contexts": ["webui"],
422 "matches": ["chrome://chrome-signin/*", "chrome://oobe/*"] 426 "matches": ["chrome://chrome-signin/*", "chrome://oobe/*"]
423 }] 427 }]
424 } 428 }
OLDNEW
« no previous file with comments | « extensions/common/api/BUILD.gn ('k') | extensions/common/api/_manifest_features.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698