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

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

Issue 890663003: Use chrome.networkingPrivate in chrome://network (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 | « chrome/browser/ui/webui/chromeos/network_ui.cc ('k') | no next file » | 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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 }, 196 },
197 "mojoPrivate": { 197 "mojoPrivate": {
198 "contexts": ["blessed_extension"], 198 "contexts": ["blessed_extension"],
199 "channel": "stable", 199 "channel": "stable",
200 "extension_types": ["platform_app", "extension"], 200 "extension_types": ["platform_app", "extension"],
201 "whitelist": [ 201 "whitelist": [
202 "63ED55E43214C211F82122ED56407FF1A807F2A3" // http://crbug.com/448569 202 "63ED55E43214C211F82122ED56407FF1A807F2A3" // http://crbug.com/448569
203 ] 203 ]
204 }, 204 },
205 "networkingPrivate": { 205 "networkingPrivate": {
206 "dependencies": ["permission:networkingPrivate"], 206 "dependencies": ["permission:networkingPrivate"],
not at google - send to devlin 2015/01/29 23:53:17 oh, this is a problem here. You can't depend on th
207 "contexts": ["blessed_extension"] 207 "contexts": ["blessed_extension", "webui"],
208 "matches": [
209 "chrome://network/*"
210 ]
208 }, 211 },
209 "power": { 212 "power": {
210 "dependencies": ["permission:power"], 213 "dependencies": ["permission:power"],
211 "contexts": ["blessed_extension"] 214 "contexts": ["blessed_extension"]
212 }, 215 },
213 "printerProvider": { 216 "printerProvider": {
214 "dependencies": ["permission:printerProvider"], 217 "dependencies": ["permission:printerProvider"],
215 "contexts": ["blessed_extension"] 218 "contexts": ["blessed_extension"]
216 }, 219 },
217 "printerProviderInternal": { 220 "printerProviderInternal": {
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
428 }], 431 }],
429 "webViewRequest": [{ 432 "webViewRequest": [{
430 "dependencies": ["permission:webview"], 433 "dependencies": ["permission:webview"],
431 "contexts": ["blessed_extension"] 434 "contexts": ["blessed_extension"]
432 }, { 435 }, {
433 "channel": "stable", 436 "channel": "stable",
434 "contexts": ["webui"], 437 "contexts": ["webui"],
435 "matches": ["chrome://chrome-signin/*", "chrome://oobe/*"] 438 "matches": ["chrome://chrome-signin/*", "chrome://oobe/*"]
436 }] 439 }]
437 } 440 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/chromeos/network_ui.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698