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

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

Issue 2860203002: MediaPerceptionPrivate IDL and skeleton. (Closed)
Patch Set: Remove changes to webcam_private.idl Created 3 years, 7 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 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 "management.getSelf": { 229 "management.getSelf": {
230 "dependencies": [], 230 "dependencies": [],
231 "channel": "stable", 231 "channel": "stable",
232 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] 232 "extension_types": ["extension", "legacy_packaged_app", "platform_app"]
233 }, 233 },
234 "management.uninstallSelf": { 234 "management.uninstallSelf": {
235 "dependencies": [], 235 "dependencies": [],
236 "channel": "stable", 236 "channel": "stable",
237 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] 237 "extension_types": ["extension", "legacy_packaged_app", "platform_app"]
238 }, 238 },
239 "mediaPerceptionPrivate": {
240 "dependencies": ["permission:mediaPerceptionPrivate"],
241 "contexts": ["blessed_extension"]
242 },
239 "metricsPrivate": [{ 243 "metricsPrivate": [{
240 "dependencies": ["permission:metricsPrivate"], 244 "dependencies": ["permission:metricsPrivate"],
241 "contexts": ["blessed_extension"], 245 "contexts": ["blessed_extension"],
242 "default_parent": true 246 "default_parent": true
243 }, { 247 }, {
244 "channel": "stable", 248 "channel": "stable",
245 "contexts": ["webui"], 249 "contexts": ["webui"],
246 "matches": [ 250 "matches": [
247 "chrome://md-settings/*", 251 "chrome://md-settings/*",
248 "chrome://settings/*", 252 "chrome://settings/*",
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
533 }, { 537 }, {
534 "channel": "stable", 538 "channel": "stable",
535 "contexts": ["webui"], 539 "contexts": ["webui"],
536 "matches": [ 540 "matches": [
537 "chrome://chrome-signin/*", 541 "chrome://chrome-signin/*",
538 "chrome://media-router/*", 542 "chrome://media-router/*",
539 "chrome://oobe/*" 543 "chrome://oobe/*"
540 ] 544 ]
541 }] 545 }]
542 } 546 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698