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

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

Issue 2470193002: Introduce networking.onc as an alias for networkingPrivate (Closed)
Patch Set: . Created 4 years 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 chrome/common/extensions/api/_features.md to understand this file, as 6 // See chrome/common/extensions/api/_features.md to understand this file, as
7 // well as feature.h, simple_feature.h, and base_feature_provider.h. 7 // well as 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 278 matching lines...) Expand 10 before | Expand all | Expand 10 after
289 "channel": "stable", 289 "channel": "stable",
290 "extension_types": ["platform_app", "extension"], 290 "extension_types": ["platform_app", "extension"],
291 "whitelist": [ 291 "whitelist": [
292 "226CF815E39A363090A1E547D53063472B8279FA", // http://crbug.com/574889 292 "226CF815E39A363090A1E547D53063472B8279FA", // http://crbug.com/574889
293 "C17CD9E6868D7B9C67926E0EC612EA25C768418F", // http://crbug.com/448569 293 "C17CD9E6868D7B9C67926E0EC612EA25C768418F", // http://crbug.com/448569
294 "A45DABDB47A31CC812E5490AB748C7D05E2D32E9", 294 "A45DABDB47A31CC812E5490AB748C7D05E2D32E9",
295 "BFEE2E3B80BE21A645E63E9346DFC383E7CB3BDA", 295 "BFEE2E3B80BE21A645E63E9346DFC383E7CB3BDA",
296 "63ED55E43214C211F82122ED56407FF1A807F2A3" 296 "63ED55E43214C211F82122ED56407FF1A807F2A3"
297 ] 297 ]
298 }, 298 },
299 "networkConfig": [{
300 "dependencies": ["permission:networkConfig"],
301 "contexts": ["blessed_extension"],
302 "source": "networkingPrivate"
303 }, {
304 "channel": "stable",
305 "contexts": ["webui"],
306 "matches": [
307 "chrome://md-settings/*",
308 "chrome://network/*",
309 "chrome://oobe/*",
310 "chrome://settings/*",
311 "chrome://settings-frame/*"
312 ]
313 }],
299 "networking.config": { 314 "networking.config": {
300 "dependencies": ["permission:networking.config"], 315 "dependencies": ["permission:networking.config"],
301 "contexts": ["blessed_extension"] 316 "contexts": ["blessed_extension"]
302 }, 317 },
303 "networkingPrivate": [{ 318 "networkingPrivate": [{
304 "dependencies": ["permission:networkingPrivate"], 319 "dependencies": ["permission:networkingPrivate"],
305 "contexts": ["blessed_extension"] 320 "contexts": ["blessed_extension"],
321 "alias": "networkConfig"
306 }, { 322 }, {
307 "channel": "stable", 323 "channel": "stable",
308 "contexts": ["webui"], 324 "contexts": ["webui"],
309 "matches": [ 325 "matches": [
310 "chrome://md-settings/*", 326 "chrome://md-settings/*",
311 "chrome://network/*", 327 "chrome://network/*",
312 "chrome://oobe/*", 328 "chrome://oobe/*",
313 "chrome://settings/*", 329 "chrome://settings/*",
314 "chrome://settings-frame/*" 330 "chrome://settings-frame/*"
315 ] 331 ]
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
518 }, { 534 }, {
519 "channel": "stable", 535 "channel": "stable",
520 "contexts": ["webui"], 536 "contexts": ["webui"],
521 "matches": [ 537 "matches": [
522 "chrome://chrome-signin/*", 538 "chrome://chrome-signin/*",
523 "chrome://media-router/*", 539 "chrome://media-router/*",
524 "chrome://oobe/*" 540 "chrome://oobe/*"
525 ] 541 ]
526 }] 542 }]
527 } 543 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698