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

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: update more tests 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
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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 "management.getSelf": { 174 "management.getSelf": {
175 "dependencies": [], 175 "dependencies": [],
176 "channel": "stable", 176 "channel": "stable",
177 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] 177 "extension_types": ["extension", "legacy_packaged_app", "platform_app"]
178 }, 178 },
179 "management.uninstallSelf": { 179 "management.uninstallSelf": {
180 "dependencies": [], 180 "dependencies": [],
181 "channel": "stable", 181 "channel": "stable",
182 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] 182 "extension_types": ["extension", "legacy_packaged_app", "platform_app"]
183 }, 183 },
184 "mimeHandlerPrivate": {
185 "dependencies": ["manifest:mime_types_handler"],
186 "contexts": ["blessed_extension"]
187 },
184 "mojoPrivate": { 188 "mojoPrivate": {
185 "contexts": ["blessed_extension"], 189 "contexts": ["blessed_extension"],
186 "channel": "stable", 190 "channel": "stable",
187 "extension_types": ["platform_app", "extension"], 191 "extension_types": ["platform_app", "extension"],
188 "whitelist": [ 192 "whitelist": [
189 "63ED55E43214C211F82122ED56407FF1A807F2A3" // http://crbug.com/448569 193 "63ED55E43214C211F82122ED56407FF1A807F2A3" // http://crbug.com/448569
190 ] 194 ]
191 }, 195 },
192 "power": { 196 "power": {
193 "dependencies": ["permission:power"], 197 "dependencies": ["permission:power"],
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
411 }], 415 }],
412 "webViewRequest": [{ 416 "webViewRequest": [{
413 "dependencies": ["permission:webview"], 417 "dependencies": ["permission:webview"],
414 "contexts": ["blessed_extension"] 418 "contexts": ["blessed_extension"]
415 }, { 419 }, {
416 "channel": "stable", 420 "channel": "stable",
417 "contexts": ["webui"], 421 "contexts": ["webui"],
418 "matches": ["chrome://chrome-signin/*", "chrome://oobe/*"] 422 "matches": ["chrome://chrome-signin/*", "chrome://oobe/*"]
419 }] 423 }]
420 } 424 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698