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

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

Issue 68503019: Windows-specific implementation of Networking Private API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Make ChromeCast setup work on Windows again. Created 7 years, 1 month 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 415 matching lines...) Expand 10 before | Expand all | Expand 10 after
426 }, 426 },
427 "mdns": { 427 "mdns": {
428 "dependencies": ["permission:mdns"], 428 "dependencies": ["permission:mdns"],
429 "contexts": ["blessed_extension"] 429 "contexts": ["blessed_extension"]
430 }, 430 },
431 "musicManagerPrivate": { 431 "musicManagerPrivate": {
432 "dependencies": ["permission:musicManagerPrivate"], 432 "dependencies": ["permission:musicManagerPrivate"],
433 "contexts": ["blessed_extension"] 433 "contexts": ["blessed_extension"]
434 }, 434 },
435 "networkingPrivate": { 435 "networkingPrivate": {
436 "platforms": ["chromeos"], 436 "platforms": ["chromeos", "win"],
437 "dependencies": ["permission:networkingPrivate"], 437 "dependencies": ["permission:networkingPrivate"],
438 "contexts": ["blessed_extension"] 438 "contexts": ["blessed_extension"]
439 }, 439 },
440 "notifications": { 440 "notifications": {
441 "dependencies": ["permission:notifications"], 441 "dependencies": ["permission:notifications"],
442 "contexts": ["blessed_extension"] 442 "contexts": ["blessed_extension"]
443 }, 443 },
444 "omnibox": { 444 "omnibox": {
445 "dependencies": ["manifest:omnibox"], 445 "dependencies": ["manifest:omnibox"],
446 "contexts": ["blessed_extension"] 446 "contexts": ["blessed_extension"]
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after
730 "internal": true, 730 "internal": true,
731 "channel": "stable", 731 "channel": "stable",
732 "dependencies": ["permission:webview"], 732 "dependencies": ["permission:webview"],
733 "contexts": ["blessed_extension"] 733 "contexts": ["blessed_extension"]
734 }, 734 },
735 "windows": { 735 "windows": {
736 "dependencies": ["api:tabs"], 736 "dependencies": ["api:tabs"],
737 "contexts": ["blessed_extension"] 737 "contexts": ["blessed_extension"]
738 } 738 }
739 } 739 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698