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

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

Issue 649003003: Add a mojoPrivate API that exposes mojo to component apps/extensions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@serial-service
Patch Set: 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 "mojoPrivate": {
185 "contexts": ["blessed_extension"],
186 "channel": "stable",
187 "extension_types": ["platform_app", "extension"],
188 "whitelist": [
189 "63ED55E43214C211F82122ED56407FF1A807F2A3" // http://crbug.com/448569
190 ]
191 },
184 "power": { 192 "power": {
185 "dependencies": ["permission:power"], 193 "dependencies": ["permission:power"],
186 "contexts": ["blessed_extension"] 194 "contexts": ["blessed_extension"]
187 }, 195 },
188 "runtime": { 196 "runtime": {
189 "channel": "stable", 197 "channel": "stable",
190 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], 198 "extension_types": ["extension", "legacy_packaged_app", "platform_app"],
191 "contexts": ["blessed_extension"] 199 "contexts": ["blessed_extension"]
192 }, 200 },
193 "runtime.getManifest": { 201 "runtime.getManifest": {
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
394 }], 402 }],
395 "webViewRequest": [{ 403 "webViewRequest": [{
396 "dependencies": ["permission:webview"], 404 "dependencies": ["permission:webview"],
397 "contexts": ["blessed_extension"] 405 "contexts": ["blessed_extension"]
398 }, { 406 }, {
399 "channel": "stable", 407 "channel": "stable",
400 "contexts": ["webui"], 408 "contexts": ["webui"],
401 "matches": ["chrome://chrome-signin/*", "chrome://oobe/*"] 409 "matches": ["chrome://chrome-signin/*", "chrome://oobe/*"]
402 }] 410 }]
403 } 411 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698