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

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

Issue 22870011: chrome.mdns API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address comments Created 7 years, 3 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // See c/c/e/features/* to understand this file, in particular feature.h, 5 // See c/c/e/features/* to understand this file, in particular feature.h,
6 // simple_feature.h, and base_feature_provider.h. 6 // simple_feature.h, and base_feature_provider.h.
7 7
8 { 8 {
9 "activityLogPrivate": { 9 "activityLogPrivate": {
10 "dependencies": ["permission:activityLogPrivate"], 10 "dependencies": ["permission:activityLogPrivate"],
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after
337 }, 337 },
338 "mediaPlayerPrivate": { 338 "mediaPlayerPrivate": {
339 "platform": "chromeos", 339 "platform": "chromeos",
340 "dependencies": ["permission:mediaPlayerPrivate"], 340 "dependencies": ["permission:mediaPlayerPrivate"],
341 "contexts": ["blessed_extension"] 341 "contexts": ["blessed_extension"]
342 }, 342 },
343 "metricsPrivate": { 343 "metricsPrivate": {
344 "dependencies": ["permission:metricsPrivate"], 344 "dependencies": ["permission:metricsPrivate"],
345 "contexts": ["blessed_extension"] 345 "contexts": ["blessed_extension"]
346 }, 346 },
347 "mdns": {
348 "dependencies": ["permission:mdns"],
349 "contexts": ["blessed_extension"]
350 },
347 "musicManagerPrivate": { 351 "musicManagerPrivate": {
348 "dependencies": ["permission:musicManagerPrivate"], 352 "dependencies": ["permission:musicManagerPrivate"],
349 "contexts": ["blessed_extension"] 353 "contexts": ["blessed_extension"]
350 }, 354 },
351 "networkingPrivate": { 355 "networkingPrivate": {
352 "platform": "chromeos", 356 "platform": "chromeos",
353 "dependencies": ["permission:networkingPrivate"], 357 "dependencies": ["permission:networkingPrivate"],
354 "contexts": ["blessed_extension"] 358 "contexts": ["blessed_extension"]
355 }, 359 },
356 "notifications": { 360 "notifications": {
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
588 }, 592 },
589 "webview": { 593 "webview": {
590 "dependencies": ["permission:webview"], 594 "dependencies": ["permission:webview"],
591 "contexts": ["blessed_extension"] 595 "contexts": ["blessed_extension"]
592 }, 596 },
593 "windows": { 597 "windows": {
594 "dependencies": ["api:tabs"], 598 "dependencies": ["api:tabs"],
595 "contexts": ["blessed_extension"] 599 "contexts": ["blessed_extension"]
596 } 600 }
597 } 601 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698