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

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: Rebase + feedback 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/chrome_browser_ui.gypi ('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 "channel": "stable", 196 "channel": "stable",
197 "extension_types": ["platform_app", "extension"], 197 "extension_types": ["platform_app", "extension"],
198 "whitelist": [ 198 "whitelist": [
199 "63ED55E43214C211F82122ED56407FF1A807F2A3" // http://crbug.com/448569 199 "63ED55E43214C211F82122ED56407FF1A807F2A3" // http://crbug.com/448569
200 ] 200 ]
201 }, 201 },
202 "networking.config": { 202 "networking.config": {
203 "dependencies": ["permission:networking.config"], 203 "dependencies": ["permission:networking.config"],
204 "contexts": ["blessed_extension"] 204 "contexts": ["blessed_extension"]
205 }, 205 },
206 "networkingPrivate": { 206 "networkingPrivate": [{
207 "dependencies": ["permission:networkingPrivate"], 207 "dependencies": ["permission:networkingPrivate"],
208 "contexts": ["blessed_extension"] 208 "contexts": ["blessed_extension"]
209 }, 209 }, {
210 "channel": "stable",
211 "contexts": ["webui"],
212 "matches": [
213 "chrome://network/*"
214 ]
215 }],
210 "power": { 216 "power": {
211 "dependencies": ["permission:power"], 217 "dependencies": ["permission:power"],
212 "contexts": ["blessed_extension"] 218 "contexts": ["blessed_extension"]
213 }, 219 },
214 "printerProvider": { 220 "printerProvider": {
215 "dependencies": ["permission:printerProvider"], 221 "dependencies": ["permission:printerProvider"],
216 "contexts": ["blessed_extension"] 222 "contexts": ["blessed_extension"]
217 }, 223 },
218 "printerProviderInternal": { 224 "printerProviderInternal": {
219 "internal": true, 225 "internal": true,
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
429 }], 435 }],
430 "webViewRequest": [{ 436 "webViewRequest": [{
431 "dependencies": ["permission:webview"], 437 "dependencies": ["permission:webview"],
432 "contexts": ["blessed_extension"] 438 "contexts": ["blessed_extension"]
433 }, { 439 }, {
434 "channel": "stable", 440 "channel": "stable",
435 "contexts": ["webui"], 441 "contexts": ["webui"],
436 "matches": ["chrome://chrome-signin/*", "chrome://oobe/*"] 442 "matches": ["chrome://chrome-signin/*", "chrome://oobe/*"]
437 }] 443 }]
438 } 444 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser_ui.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698