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

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

Issue 2726223004: Introduce networking.cast API (Closed)
Patch Set: . Created 3 years, 9 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 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 feature_provider.h. 7 // well as feature.h, simple_feature.h, and 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 }, 289 },
290 "mojoPrivate": { 290 "mojoPrivate": {
291 "contexts": ["blessed_extension"], 291 "contexts": ["blessed_extension"],
292 "channel": "stable", 292 "channel": "stable",
293 "extension_types": ["platform_app", "extension"], 293 "extension_types": ["platform_app", "extension"],
294 "whitelist": [ 294 "whitelist": [
295 "63ED55E43214C211F82122ED56407FF1A807F2A3", // Media Router Dev 295 "63ED55E43214C211F82122ED56407FF1A807F2A3", // Media Router Dev
296 "226CF815E39A363090A1E547D53063472B8279FA" // Media Router Stable 296 "226CF815E39A363090A1E547D53063472B8279FA" // Media Router Stable
297 ] 297 ]
298 }, 298 },
299 "networking.cast": {
300 "channel": "stable",
301 "contexts": ["blessed_extension"],
302 "dependencies": ["permission:networking.cast"]
303 },
299 "networking.config": { 304 "networking.config": {
300 "dependencies": ["permission:networking.config"], 305 "dependencies": ["permission:networking.config"],
301 "contexts": ["blessed_extension"] 306 "contexts": ["blessed_extension"]
302 }, 307 },
303 "networking.onc": { 308 "networking.onc": {
304 "dependencies": ["permission:networking.onc"], 309 "dependencies": ["permission:networking.onc"],
305 "contexts": ["blessed_extension"], 310 "contexts": ["blessed_extension"],
306 "source": "networkingPrivate" 311 "source": "networkingPrivate"
307 }, 312 },
308 "networkingPrivate": [{ 313 "networkingPrivate": [{
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
533 }, { 538 }, {
534 "channel": "stable", 539 "channel": "stable",
535 "contexts": ["webui"], 540 "contexts": ["webui"],
536 "matches": [ 541 "matches": [
537 "chrome://chrome-signin/*", 542 "chrome://chrome-signin/*",
538 "chrome://media-router/*", 543 "chrome://media-router/*",
539 "chrome://oobe/*" 544 "chrome://oobe/*"
540 ] 545 ]
541 }] 546 }]
542 } 547 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698