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

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: Fixed Win64 compilation error. 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 409 matching lines...) Expand 10 before | Expand all | Expand 10 after
420 }, 420 },
421 "mdns": { 421 "mdns": {
422 "dependencies": ["permission:mdns"], 422 "dependencies": ["permission:mdns"],
423 "contexts": ["blessed_extension"] 423 "contexts": ["blessed_extension"]
424 }, 424 },
425 "musicManagerPrivate": { 425 "musicManagerPrivate": {
426 "dependencies": ["permission:musicManagerPrivate"], 426 "dependencies": ["permission:musicManagerPrivate"],
427 "contexts": ["blessed_extension"] 427 "contexts": ["blessed_extension"]
428 }, 428 },
429 "networkingPrivate": { 429 "networkingPrivate": {
430 "platforms": ["chromeos"], 430 "platforms": ["chromeos", "win"],
431 "dependencies": ["permission:networkingPrivate"], 431 "dependencies": ["permission:networkingPrivate"],
432 "contexts": ["blessed_extension"] 432 "contexts": ["blessed_extension"]
433 }, 433 },
434 "notifications": { 434 "notifications": {
435 "dependencies": ["permission:notifications"], 435 "dependencies": ["permission:notifications"],
436 "contexts": ["blessed_extension"] 436 "contexts": ["blessed_extension"]
437 }, 437 },
438 "omnibox": { 438 "omnibox": {
439 "dependencies": ["manifest:omnibox"], 439 "dependencies": ["manifest:omnibox"],
440 "contexts": ["blessed_extension"] 440 "contexts": ["blessed_extension"]
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after
729 "internal": true, 729 "internal": true,
730 "channel": "stable", 730 "channel": "stable",
731 "dependencies": ["permission:webview"], 731 "dependencies": ["permission:webview"],
732 "contexts": ["blessed_extension"] 732 "contexts": ["blessed_extension"]
733 }, 733 },
734 "windows": { 734 "windows": {
735 "dependencies": ["api:tabs"], 735 "dependencies": ["api:tabs"],
736 "contexts": ["blessed_extension"] 736 "contexts": ["blessed_extension"]
737 } 737 }
738 } 738 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698